function know_chk(){
    if(document.formname.elements["know[]"][12].checked){
 			document.formname.know_other.disabled=false;
    }else{
 			document.formname.know_other.disabled=true;
 			document.formname.know_other.value="";
     }
}

