
function getUserPass(item) {
switch (item) {
       case '3':
       $('userid').style.display='table-row';
       $('password').style.display='table-row';
       break;
       
	default:
       $('userid').style.display='none';
       $('password').style.display='none';
 }
 
}

