var fee = 0;
var total = 0;
function totalIt()
{
fee = (window.document.paymentform.baseamount.value * .03) + (.30 - 0);
amount = (window.document.paymentform.baseamount.value - 0) + (fee.toFixed(2) - 0)
window.document.paymentform.fee.value = fee.toFixed(2);
window.document.paymentform.amount.value = amount.toFixed(2);
}

