function bindPaymentEvents() {
    jQuery("#user_accountInformation_attributes_payment_option").change(function() {
       if(jQuery(this).val() == "paypal") {
           jQuery(".paypal").show();
           jQuery(".check").hide();
       } else {
           jQuery(".paypal").hide();
           jQuery(".check").show();
       }
    });
}