In the following script, when del key is pressed it returns 46 instead of 127, which is the ASCII code of del key.
function countLength(evt) {
var inp = (evt.which) ? evt.which : event.keyCode;
alert (inp);
return true;
}