function callForm( formcall ) {

  if (formcall == "email") {

    document.customerserviceform.command.value = "EmailUpdate";

  }

  else if (formcall == "phone") {

    document.customerserviceform.command.value = "PhoneUpdate";

  }

  else if (formcall.options[formcall.selectedIndex].value == "N/A") {

    return false;

  }

  else {

    document.customerserviceform.command.value = formcall.options[formcall.selectedIndex].value;

  }



  document.customerserviceform.submit();

}


















