function validateForm()
{

	$("#reminder").hide();

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

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

	} else {

		return true;

	}

}

function showReminder()
{

	validateForm();

}

