
//Edit the counter/limiter value as your wish

var count250 = "250";   

function limiter250(){
var tex250 = document.frm1.about_you.value;
var len250 = tex250.length;

if(len250 > count250){
        tex250 = tex250.substring(0,count250);
        document.frm1.about_you.value =tex250;
        return false;}

document.frm1.limit250.value = count250-len250;
}



//Edit the counter/limiter value as your wish

var count20 = "20";   

function limiter20(){
var tex20 = document.frm1.highschool_play.value;
var len20 = tex20.length;

if(len20 > count20){
        tex20 = tex20.substring(0,count20);
        document.frm1.highschool_play.value =tex20;
        return false;}

document.frm1.limit20.value = count20-len20;
}

//Edit the counter/limiter value as your wish

var count19 = "19";   

function limiter19(){
var tex19 = document.frm1.college_play.value;
var len19 = tex19.length;

if(len19 > count19){
        tex19 = tex19.substring(0,count19);
        document.frm1.college_play.value =tex19;
        return false;}

document.frm1.limit19.value = count19-len19;
}

//Edit the counter/limiter value as your wish

var count18 = "18";   

function limiter18(){
var tex18 = document.frm1.other_play.value;
var len18 = tex18.length;

if(len18 > count18){
        tex18 = tex18.substring(0,count18);
        document.frm1.other_play.value =tex18;
        return false;}

document.frm1.limit18.value = count18-len18;
}



