<!-- Begin

function validate() {

var theMessage = "Please complete the following: \n-----------------------------------\n";
var noErrors = theMessage

// Make sure a single checkbox is checked
var boxCheck = false;
if (document.ordform.confirm.checked) {
boxCheck = true; }
if (!boxCheck) {
theMessage = theMessage + "\n --> Agree to the terms";
}

// If no errors, submit the form
if (theMessage == noErrors) {
return true;

} else {

// If errors were found, show alert message
alert(theMessage);
return false;
}
}

function madeSelection(elem, helperMsg){
	if(elem.value == "Please select nearest city for delivery"){
		alert(helperMsg);
		elem.focus();
		return false;
	}else{
		return true;
	}
}
// End -->