Самый легкий способ решения - через jQuery:
$('#comment').on('keypress', function() {
var that = this;
setTimeout(function() {
var res = /[^а-я ]/g.exec(that.value);
console.log(res);
that.value = that.value.replace(res, '');
}, 0);
});
Можно вставить прямо в файл comments.php