This is a job for Javascripting
add this between your <head> tags
<script type="text/javascript" language="javascript">
function KeyCount(obj,count)
{
var t=obj.value;
var ret;
if (t.length > count)
{
ret = t.substring(0,count);
obj.value = ret;
}
}
</script>
and in your text field you want to limit put
onkeyup="KeyCount(this,200);"
change 200 to what ever you want the limit to be, add this to any text field or text area you wish to limit