function DisplayTextBox(obj,id){
 txt=obj.options[obj.selectedIndex].text;
 if (txt.match('I am presently registered as an ECF participant in another court. PLEASE IDENTIFY COURTS IN THE RED BOX BELOW !')){
  document.getElementById(id).style.visibility='visible';
 }
 if (txt.match('I am not currently filing electronically in another court but completed the ECF Creditor/Claimant Filer Guide')){
 document.getElementById(id).style.visibility='hidden';

 }
}
