function addNewInput()
{
	var x = document.getElementById("otherschool");
	x.innerHTML += "Enter school\:\ <br><input type=\"text\" style=\"width:250px\" name=\"other_school\" /><br>";
}


function addNewInput2()
{
	var x = document.getElementById("educ2_otherschool");
	x.innerHTML += "Enter school\:\ <br><input type=\"text\" style=\"width:250px\" name=\"educ2_other_school\" /><br>";
}



function checkoption(a,valueofoption,nameofnewtextbox,divnametoshow,label)
{
	document.getElementById(divnametoshow).innerHTML = (a == valueofoption)?label+"<br><input type=\"text\" style=\"width:250px\" name="+nameofnewtextbox+">":"";
}

 