function hideOther()
{
	var other = document.getElementById("divOther");
	
	if (other != null)
	{
		other.style.display = "none"; 
	}
}

function showHideOther()
{
	var other = document.getElementById("divOther");
	var whereSel =  document.getElementById("where");

	if (other != null)
	{
                if (whereSel.options[whereSel.selectedIndex].value == "Other")
		{
		    other.style.display = ""; 
		}
		else
		{
		    other.style.display = "none"; 
		}
	}
}
