function hideAll(theForm){ if (document.getElementById){ var name = theForm.name var i=0 while (document.getElementById(name+i)){ document.getElementById(name+i).style.display="none" i++ } } } function showSelected(theForm){ if (document.getElementById){ var item = theForm.loanType[theForm.loanType.selectedIndex].value; hideAll(theForm) document.getElementById(theForm.name+item).style.display="block" } }