I'd personally do the calculation using javascript and call it onChange.
Use a function like this...
function calculate()
{
var cal = document.getElementById(Cover).value;
var deduction = 0.100;
var result = cal - deduction;
document.getElementById(Deduction).value = result;
}
And call it on the input like this...
<input type="text" name="Cover" id="Cover" align="right" style="background:#CCCCFF" onChange="calculate();" />
Doing it this way means you don't need to post the page every single time the value is changed.