$j = jQuery.noConflict();
$j(document).ready(function(){

$j('#submitbtn').click(function(){
	if(jQuery('#privacychkbox input').is(":checked")) {
            return true;
        } else {
            alert('Please accept the privacy statement');
            return false;
        }
});

 

});
