//***************************************************************************//
// This function inserts a text field if the user selects the "Other" option //
//  from the "Current Broadband connection" dropdown list.                   //
//***************************************************************************//
function Other_Opt()
{
  var listObj = document.getElementById("internet") ;
  var selectedIndex = listObj.selectedIndex ;
  var selectedOption = listObj.options[selectedIndex].value ;

  if (selectedOption == "Other")
  {
    document.getElementById("other_text").style.visibility = "visible" ;
  }
  else
  {
    document.getElementById("other_text").style.visibility = "hidden" ;
  }
}


