	function ManicureSalonSearchForm(form)
	{
	
		if(form.q.value == "" || form.q.value == "Enter Salon Name, City, State or Zip Code...") 
		{
	
			alert('Please enter a salon name, city, state or zip code when searching for a Nail Salon.');
			form.q.focus();
			return false;
			
		}
		
		return true;
		
	}