function validate_hv()
{
	if($("#address").val() == "" ||
	   $("#city").val() == "" ||
	   $("#state").val() == "Select a State" ||
	   $("#address").val().length < 5 ||
	   $("#city").val().length < 5
	  )
	{
		alert("Please type in all required fields.");
		return false;
	}
	else
	{
		return true;
	}
}
