    function Toggle(selectValue) {

      if (selectValue == 'Other') { 
        $('otherGroupP').style.display = 'block';
        $('otherGroup').disabled = false;
      } else {
        $('otherGroupP').style.display = 'none';
        $('otherGroup').disabled = true;
      }
    }
