/*
    Function: selectedOption
    Description: Used by contactUs.php to determine the selected option
  */
function selectedOption() {
  selectedOptionNumber = document.contact.subject.selectedIndex;
  document.contact.selected_option_number.value = selectedOptionNumber;
  return;
}
