function validateForm()
{

	if ( ( $("#location").val() == defaultFieldText ) || ( $("#location").val().trim == "" ) ) {

		$("#location").focus();
		return false;

	} else {

		return true;

	}

}

