<!-- Script by hscripts.com -->

//Edit the counter/limiter value as your wish
var count = "400";   //Example: var count = "175";
function limiter(){
var tex = document.enquiry.comments.value;
var len = tex.length;
if(len > count){
        tex = tex.substring(0,count);
        document.enquiry.comments.value =tex;
        return false;
}
//document.myform.limit.value = count-len;
}




