// check that terms and conditions is ticked

function tc() {
	if (!document.tutorApply.Child_Protection_Agreement.checked) {
		document.tutorApply.tcError.value = "You must agree to the conditions above to submit application.";
		alert("You must agree to the conditions above to submit application.");
	} else {
		document.tutorApply.tcError.value = "";
	}
	return document.tutorApply.Child_Protection_Agreement.checked;
}
