onClick="counter();"
jQuery(document).ready(function(){
jQuery('#payment_method').click(function() {
if (jQuery(this).val() == "bacs") {
jQuery('#billing_email').removeAttr('required').show();
} else if (jQuery(this).val() == "rbspayment") {
jQuery('#billing_email').attr('required', 'required').show();
} else {
jQuery('#billing_email').removeAttr('required').hide();
}
})
})