function showOther()
{
	var other = document.getElementById("other");
	var SourceofInformation =document.getElementById("SourceofInformation");
	if(SourceofInformation.value=="Others"){
		other.style.visibility="visible";
	}else{
		other.style.visibility="hidden";
	}
}
function showOther1()
{
	var other = document.getElementById("other1");
	var ChooseProgram =document.getElementById("ChooseProgram");
	if(ChooseProgram.value=="others"){
		other.style.visibility="visible";
	}else{
		other.style.visibility="hidden";
	}
}