
	$(document).ready(function() {
		$('#register-submit').click(function() {
			if($('#tos-agree').attr('checked') == true) {
				return true;
			} else {
				alert('Please agree to the Renterval Terms of Service.');
				return false;
			}
		});
	});
