http://learn.javascript.ru/play/C5XWvb
<!DOCTYPE HTML>
<html>
<head></head>
<body>
<input class="no-ru" type="text">
<input class="no-ru" type="text">
<input class="no-ru" type="text">
<script>
(function () {
var elems = document.querySelectorAll('.no-ru'), i;
for(i=0; i<elems.length; i++) {
elems[i].onpropertychange = elems[i].oninput = function() {
if(/[а-яё]/ig.test(this.value)) this.value = this._prevValue || '';
this._prevValue = this.value;
};
}
})();
</script>
</body>
</html>