function checkForm() {
	var location;
	with(window.document.enquiryForm) {
		location = vLocation;
	}
	if (location.value=='') {
		alert('Please enter your Location');
		location.focus();
		return false;
	}
}