function ShowReg(op) {
 document.getElementById('other').style.display='none';
 

 if (op == "1") {
   document.getElementById('other').style.display="block";
 }
 
}
