Why dont you just use a javascript function to limit the amount of char's they can enter , then when that limit is reached , use a javascript alrt box to tell them their limit is reached , any further char's will be truncated.
Im in a good mood , so ill even provide you with a function to use
function textLimit(field, maxlen) {
if (field.value.length > maxlen + 1)
alert('You have reached the Maximum Amount of Letters!');
if (field.value.length > maxlen)
field.value = field.value.substring(0, maxlen);
}
Then in the text area you want to limit.
onkeyup="textLimit(this.form.note, 1000);
1000 Being the number of char's you want to limit , you can change this.
Cheers.