HTML
JQUERY
$(document).ready(function(){
$("input[name='payment_mode']").change(function(){
if( $(this).val() == "2" ){
$(".payment_payment").show();
}else{
$(".payment_payment").hide();
}
});
});
Imagenes