function validate(frm) {
	if (frm.terms) {
		if (!frm.terms.checked) {
			alert("Please read and agree to the Terms & Conditions before purchasing");
			return false;
		}
	}
	return true;
}
