$(document).ready(function() {
  $('form#payonline').submit(function(){
    var fvalue = Math.round($('input#amount').val().replace(/\$/,'').replace(/\,/,'') * 1.03 * 100)/100;
    $('input#amount').val(fvalue);
  });
});
