    function init2()
    {
      countycodeSelected = document.form2.countycode.selectedIndex;
      loadCities2();
    }  
  
    function killCities2()
    {
      var obj = eval('document.form2.elements["' + "zip" + '"]');
      var cnt = obj.length;
      var j;
      
      for (j=cnt; j > -1; j--)
      {
        obj.options[j] = null;
      }    
    }
    
    function loadCities2()
    {
      var foo;
      obj = eval('document.form2.elements["' + "zip" + '"]'); //setup the form object to get the cities
      whichArray = eval('city' + document.form2.countycode.options[document.form2.countycode.selectedIndex].value); //find the array to insert
      killCities2(obj);
            
      if (ind[-1] == 1 || ind.length == 0) {
        obj.options[0] = new Option('All Zip/Cities',-1,0,1);
      } else {
        obj.options[0] = new Option('All Zip/Cities',-1);
      }
      if (ind.length)
      {
        for(i=1; i <= whichArray.length; i++)
        {
          foo = parseInt(whichArray[i-1]);
          if (ind[foo] && document.form2.countycode.selectedIndex == countycodeSelected)
            obj.options[i] = new Option(whichArray[i-1],parseInt(whichArray[i-1]),0,1);
          else
            obj.options[i] = new Option(whichArray[i-1], parseInt(whichArray[i-1]));		
        }
      }
      else
      {	
        for(i=1; i <= whichArray.length; i++)
        {
          obj.options[i] = new Option(whichArray[i-1], parseInt(whichArray[i-1]));		
        }
      }
    }
    
    function launchMap2()
    {
      obj = document.form2.countycode;
      whch = obj.options[obj.selectedIndex].value;  
      st   = document.form2.state.value;
      openHelpWin('/maps/'+ st +'/' + whch + '00.wfr',450,550,1,'map');
    }
    
    function setThis2(setWhat)
    {
      dafield = document.form2.elements['zip'];
      for (i =0; i < dafield.options.length; i++)
      {
        if (dafield.options[i].value == setWhat)
          dafield.options[i].selected = true;
      }
      //window.alert(dafield.options.length);
    }
    
    function unsetThis2()
    {
      dafield = document.form2.elements['zip'];
      for (i =0; i < dafield.options.length; i++)
      {
        dafield.options[i].selected = false;
      }
    }

