jQuery(function($){
$( "input[name='payment_method']" ).change(function() {
$(document.body).trigger('update_checkout');
});
});
$(document).on('change', 'input[name="payment_method"]', function() {
$(document.body).trigger('update_checkout');
});