рони,
Как вариант.
http://learn.javascript.ru/play/bExpt
<!DOCTYPE HTML>
<html>
<head></head>
<body>
<textarea id="message"></textarea>
<script>
var message = document.getElementById('message');
message.onpropertychange = message.oninput = function() {
var selection = this.selectionStart;
this.value = this.value.toLowerCase();
this.selectionEnd = selection;
};
</script>
</body>
</html>