function interest()
{
x= Number(document.pay.amountrs.value) //actual amount
y= x+x*(5)/100 //interest rate
alert("After adding 5% Transaction Fee,\nthe Nett Amount you are paying is Rs."+ y);
document.pay.amount.value=y
}


