function validateSearch(form) 
{
  //alert('Checking form...');
  var errorMsg = '';
  
  if (form.country.value == "" || form.country.value=="0")
    errorMsg += 'Please select a country.\n';

  if (errorMsg) 
	alert(errorMsg);
		
  document.returnValue = (errorMsg == '');
}
