<!--
function otherCheck(){
ind = document.subsForm.businessType.selectedIndex;
val = document.subsForm.businessType.options[ind].value;
if(val=="Other"){
otherTR.style.visibility = "visible";
document.subsForm.otherBT.focus();
//document.subsForm.otherBT.style.background = "#cccccc";
}
else{
document.subsForm.otherBT.value = "";
otherTR.style.visibility = "hidden";
}}
-->