var count = "255"; 
function limiter(){
	var tex = document.myform.comments.value;
	var len = tex.length;
	if(len > count){
		tex = tex.substring(0,count);
		document.myform.comments.value =tex;
		return false;
	}
	document.myform.limit.value = count-len;
}


