<input type="text" id="kolvo" name="kolvo" >Количество<br>
<input type="text" id="price" name="price" >Цена
var d = document;
window.onload = function(){
var kolvo = d.getElementById('kolvo'),
price = d.getElementById('price');
kolvo.onkeydown = function(e){
e = e || window.event;
var key = e.keyCode;
if((key > 47 && key < 58) ||
(key > 95 && key < 105) ||
key == 8){
this.onkeyup =function(){
price.value = this.value*10;
}
}else{
this.onkeyup =function(){
this.value = ''
}
return
}
}
price.onkeydown = function(e){
e = e || window.event;
var key = e.keyCode;
if((key > 47 && key < 58) ||
(key > 95 && key < 105) ||
key == 8){
this.onkeyup =function(){
kolvo.value = this.value/10;
}
}else{
this.onkeyup =function(){
this.value = ''
}
return
}
}
}
так уж и быть смилуюсь