function calculate(form) {
var A = document.estimator.A.value;
A = Number(A);
var B = document.estimator.B.value;
B = Number(B);
var C = 1.15;
D = Math.round(((A+B)*C)*100)/100;
document.estimator.D.value = D;
}
