
      // Options for when eMembership is selected
      emembership = new Array
      (
        "Accounting", 
        "Administration", 
        "CWO", 
        "Calendar", 
        "Events", 
        "Organization", 
        "People",
        "Reports"
      );
      
      // Options for when eBoard is selected
      eboard = new Array
      (
        "About the Board", 
        "Calendar", 
        "Documents", 
        "GSBA Section", 
        "Legislation", 
        "Meetings", 
        "News", 
        "Policy", 
        "Resources", 
        "Site Administration", 
        "Strategic Plan", 
        "User Administration"
      ); 
      
      
      function updateOptions(value)
      {
        // Grab the select field and stuff it into a nicer variable
        select = $('00N70000001dCDo');

        // Iterate over the options and blank them out
        select.options.length = 0;
        //$R(0,select.options.length).each(function(index){select.options[index] = null;})
           
        // Figure out which array of options to load     
        switch(value)
        {
        case 'eBOARD':
            options = eboard;
          break;    
        case 'eMEMBERSHIP':
          options = emembership;
          break;
        default:
          options = new Array("--Please Select Your Appliction First--")
          break;
        }
        var i;
        
        for (i = 0; i < options.length; i++) {
            
            select.add(new Option(options[i], options[i]));
        } 
        
        // Load the new options into the select field
        //options.each(function(s, index){select.options[index] = new Option(s,s);});
        
        // Default back to the first option
        //select.options[0].selected = true;
      }
      
