a ver si esto te sirve, despues conta como te fue:
Código <:
Ver original<script>
function sumar (Form)
{
var a=Form.valor1.value;
var b=Form.valor2.value;
c= (((a*1)+(1*b)));
Form.total.value = c;
}
</script>
<form name='form1' action='' method='get' >
<input type='text' name='valor1'><br>
<input type='text' name='valor2' onBlur='sumar(this.form)'><br>
<input type='text' name='total' ><br>
<input type='submit' name='boton' value='Aceptar' >
</form>