function checkForm(){
	var postCode = document.getElementById('postcode');
	if (postCode.value == ""){
		alert('Please enter the postcode first!');
		return false;
	} else {
		document.forms.postCodeForm.submit();
		return true;
	}
}