function verify(form)
{
	
	if (form.city.value == "")
	{
		alert("Please enter the City name and retry.");
		form.city.focus();
		return false;
	}
	if (form.city.value.match(/^\d+$/)) 
  						 { 
    				 	 alert("Numbers are not allowed in City name") ;
     					 form.city.focus(); 
      					  return false; 
						  }
	if (form.locations.value == "")
	{
		alert("Please enter the locations and retry.");
		form.locations.focus();
		return false;
	}
	if (form.locations.value.match(/^\d+$/)) 
  						 { 
    				 	 alert('Numbers are not allowed in locations') 
     					form.locations.focus(); 
      					 return false; 
      					} 
	


	   return true;


}

