Le di muchas vueltas y despues de unir tu codigo con el mio e podido solucionar el problema, muchas gracias por ayudar... dejo el codigo:
Código Javascript
:
Ver originalfunction suma(){
s=document.form1;
s.total.value=parseInt(s.imf.value)+parseInt(s.emf.value)+parseInt(s.ima.value)+parseInt(s.ema.value)+parseInt(s.num_filas.value);
s.promedio.value = get_total(s.total.value);
}
function get_total(total){
var r = 0;
if (total <= 5)
{
r = 1 ;
}
if(total >= 6 && total <= 10)
{
r = 2;
}
if(total >= 11 && total <= 15)
{
r = 3;
}
if (total >= 16 && total <= 20)
{
r = 4;
}
if(total >= 21 && total <=25)
{
r = 5;
}
return r;
}