$(function () {
  //set custom validation rules
	$("#confirm1").addValidation(function() {
    if (!(this.valid = !this.checked)) {
      this.error = "The conditions must be accepted to continue with the application.";
    }
  });
});