function showOther(show)
{
	
	if (show == "Other"){
document.getElementById("other").style.display = "block";

}
if (show != "Other"){
document.getElementById("other").style.display = "none";

}

}
