jQuery(function() {
    jQuery('#payatevent').click(function() {
        payAtEvent();
    });
    function payAtEvent() {
        if (jQuery('#payatevent').attr('checked')) {
            jQuery('#paymentdetails').hide();
        }
        else
        {
            jQuery('#paymentdetails').show();
        }
    }
});