var Washington = new Array('("Select one","",true,true)',
 	'("Tacoma","Tacoma")',
 	'("Wenatchee","Whenatchee")',
 	'("Spokane","Spokane")'
  );
var oregon = new Array('("Select one","",true,true)',
'("Albany Municipal Airport","S12")',
'("Alkali Lake State Airport","R03")',
'("Arlington Municipal Airport","1S8")',
'("Ashland Municipal Airport-Sumner Parker Field","S03")',
'("Astoria Regional Airport","KAST")',
'("Aurora State Airport","KUAO")',
'("Baker City Municipal Airport","KBKE")',
'("Bandon State Airport","S05")',
'("Beaver Marsh State Airport","2S2")',
'("Bend Municipal Airport","S07")',
'("Boardman Airport","M50")',
'("Brookings Airport","KBOK")',
'("Burns Municipal Airport","KBNO")',
'("Cascade Locks State Airport","KCZK")',
'("Illinois Valley Airport","3S4")',
'("Chiloquin State Airport","2S7")',
'("Christmas Valley Airport","62S")',
'("Toketee State Airport","3S6")',
'("Condon State Pauling Field Airport","3S9")',
'("Corvallis Municipal Airport","KCVO")',
'("Cottage Grove State Airport","61S")',
'("Crescent Lake State Airport","5S2")',
'("Hobby Field Airport","77S")',
'("Lake Billy Chinook State Airport","5S5")',
'("Cape Blanco State Airport","5S6")',
'("Enterprise Municipal Airport","8S4")',
'("Valley View Airport","5S9")',
'("Mahlon Sweet Field Airport","KEUG")',
'("Florence Municipal Airport","6S2")',
'("Lake Woahink Seaplane Base","1O0")',
'("Siltcoos Lake Seaplane Base","5J2")',
'("Davis Airport","6S4")',
'("Siletz Bay State Airport","S45")',
'("Gold Beach Municipal Airport","4S1")',
'("Grants Pass Airport","3S8")',
'("Hermiston Municipal Airport","KHRI")',
'("Stark\'s Twin Oaks Airpark","7S3")',
'("Hood River Airport","4S2")',
'("Lenhardt Airpark","7S9")',
'("Memaloose Airport","25U")',
'("Independence State Airport","7S5")',
'("Grant County Regional Airport/Ogilvie Field","5J0")',
'("Joseph State Airport","4S3")',
'("Klamath Falls International Airport","KLMT")',
'("La Grande/Union County Airport","KLGD")',
'("Lakeside State Airport","9S3")',
'("Lake County Airport","KLKV")',
'("Lebanon State Airport","S30")',
'("Lexington Airport","9S9")',
'("City-County Airport","S33")',
'("Malin Airport","4S7")',
'("Nehalem Bay State Airport","3S7")',
'("Mc Dermitt State Airport","26U")',
'("Mc Kenzie Bridge State Airport","00S")',
'("Mc Minnville Municipal Airport","KMMV")',
'("Rogue Valley International - Medford Airport","KMFR")',
'("Monument Municipal Airport","12S")',
'("Myrtle Creek Municipal Airport","16S")',
'("Sportsman Airpark","2S6")',
'("Chehalem Airpark","17S")',
'("Newport Municipal Airport","KONP")',
'("North Bend Municipal Airport","KOTH")',
'("Oakridge State Airport","5S0")',
'("Ontario Municipal Airport","KONO")',
'("Owyhee Reservoir State Airport","28U")',
'("Pacific City State Airport","KPFC")',
'("Paisley Airport","22S")',
'("Eastern Oregon Regional Airport at Pendleton","KPDT")',
'("Pinehurst State Airport","24S")',
'("Portland International Airport","KPDX")',
'("Portland-Hillsboro Airport","KHIO")',
'("Portland-Troutdale Airport","KTTD")',
'("Portland Downtown Heliport","61J")',
'("Portland-Mulino Airport","4S9")',
'("Powers Airport","6S6")',
'("Prineville Airport","S39")',
'("Prospect State Airport","64S")',
'("Roberts Field Airport","KRDM")',
'("Rome State Airport","KREO")',
'("Roseburg Regional Airport","KRBG")',
'("George Felt Airport","5S1")',
'("McNary Field Airport","KSLE")',
'("Country Squire Airpark","S48")',
'("Sandy River Airport","03S")',
'("Santiam Junction State Airport","8S3")',
'("Scappoose Industrial Airpark","KSPB")',
'("Seaside Municipal Airport","56S")',
'("Silver Lake Forest Service Strip","45S")',
'("Sisters Eagle Air Airport","6K5")',
'("Sunriver Airport","S21")',
'("Columbia Gorge Regional/The Dalles Municipal Airport","KDLS")',
'("Tillamook Airport","S47")',
'("Toledo State Airport","5S4")',
'("Miller Memorial Airpark","S49")',
'("Vernonia Airfield","05S")',
'("Wakonda Beach State Airport","R33")',
'("Wasco State Airport","35S")'
  );
			

<!--
 
function addNewOption(input_array,data_array,code) {
//    alert("Here " + data_array);
    eval("selectedArray="+data_array);
   if (navigator.appName == 'Netscape')
   {

        for (var i=0; i < selectedArray.length ; i++) 
        {
		eval("input_array.options[i]=" + "new Option " + selectedArray[i]);
       //     eval("input_array.options[i]=" + "new Option('" + selectedArray[i] + "','" + selectedArray[i] +"')");
        }

    }else
    {
 
        for (var i=0; i < selectedArray.length ; i++) 
        {
//alert("loop");
			eval("input_array.options[i]=" + "new Option " + selectedArray[i]);
        }
/*
        for (var i=selectedArray.length -1 ; i >= 0 ; i--)
        {
            oNewOption = new Option();
            oNewOption.value = selectedArray[i];
            oNewOption.text = selectedArray[i];
            input_array.add(oNewOption, 0);
        }
*/
    }

	if(code != "")
{
    for (var i=0; i < selectedArray.length ; i++)
    {
        if(input_array.options[i].value == code )
        {
//            alert ("Location found " + i);
//            alert(" index is " + input_array.options[i].selected);
            input_array.options[i].selected=i;
//            alert(" index is " + input_array.options[i].selected);
        }
}
    }
 }


// -->
