function checkFormSearch(form) {
	
	if (form.idNation.value == "")  {
		alert ("Please select a Country!")
		form.idNation.focus()
		return(false); }
	
	if (document.getElementById('idADM1').value == "")  {
		alert ("Please select a County/State!")
		document.getElementById('idADM1').focus()
		return(false); }
			
	if (form.EventDay.value == "")  {
		alert ("Please select a Day!")
		form.EventDay.focus()
		return(false); }			

	else return(true);
}