jQuery(document).ready(function() {

  $j('input[type=radio][name=paymentTerm]').click(function() {
    $j.post("session.php",
      {action: 'paymentTermSelectedSave', selected: $j(this).attr('id')},
      function (data) {
      }
    );
  });
});


