<!--
function validate_form() 
{ 
  if (document.forms.country_form.changelanguage.value=="#")
  { 
	alert ("Please select a country!");
	return false; 
  }

  top.location=document.forms.country_form.changelanguage.value; 
  return false;


} 
//-->