var city_buffer = new Array();
var area_buffer = new Array();

/*******************************************************************************
 * Everything that needs to be run right after the inc-mls-search alunches
 *******************************************************************************/
$().ready(function(){

	//Auto-populate All our options if we're coming from another quick search, 
	if (typeof search_source != 'undefined' && search_source != ''){
		autoSelectOptions();
	}else{
		populateCities();
	}
	//Binds the function of click to the Go button of the quick search, SIDEBAR
	$('#run_quick_search').click(function(){
		runQuickSearch();
	});
	
	//Binds the function of click to the Go button of the quick search, IN THE IFRAME
	$('#run_quick_search_iframe').click(function(){
		runQuickSearch('iframe');
	});
	
	
	//Takes care of the sem_visitor_modal background in the First & Lastname boxes.
	$('.sem_visitor_modal .body .layer_3 #register .first_name, .sem_visitor_modal .body .layer_3 #register .last_name').live("click", function(){
		$(this).removeClass('display');
	});
	
	$('.sem_visitor_modal .body .layer_3 #register .first_name, .sem_visitor_modal .body .layer_3 #register .last_name').keydown( function(e){
		
		$(this).removeClass('display');
		
		if(e.which == 8){
			if(this.value.length == 1 || this.value.length == 0){
				//If we're down to our last char and hitting backspace, add the background back in.
				$(this).addClass('display');
			}
		}
	});
	
	//User clicked the Already Member button, closes the popup and directs them to the login.
	$('#sem_visitor_modal .already_member').click(function(){
		$('#sem_visitor_modal').jqmHide();
		$('#search_iframe').attr('src', 'http://www.northwestidx.com/login.php?site_id=40680&return=realty_watcher_signed_in.php%3Fsite_id%3D40680');
	});
	
	//Center the sem_visitor_modal on load & on a window-resize
	$('#sem_visitor_modal').css('left', $(window).width()/2 - $('#sem_visitor_modal').width()/2 + 'px');
	$(window).bind('resize', function () {
		$('#sem_visitor_modal').css('left', $(window).width()/2 - $('#sem_visitor_modal').width()/2 + 'px');
	});
	
	//Bring the Navbar to life! Muahahahha
	mlsNavbarBinds();
});

/**
 * After the MLS Search page finishes loading, we populate all the quicksearch items if they came from th
 * e homepage.
 * 
 * The passed values are located in page-research.php.  Bad separation but no way to pass between php and js w/o this.
 * 
 * 0.  Populate the city list based on the auto grab of King County
 * 1.  If we're passed a city, grab it
 * 2.  Populate the area based upon the city
 * 3.  Grab the area (neighborhood) based upon the passed one
 * 4.  Finish off the rest of the stuff.
 * 
 * @return
 */
function autoSelectOptions(){
	
	var city_select = $('#selectCity')[0];
	var neighborhood_select = $('#selectNeighborhood')[0];
	
	var beds_select = $('#beds')[0];
	var baths_select = $('#baths')[0];
	
	var max_price_select = $('#max_price')[0];
	var min_price_select = $('#min_price')[0];
	
	//Step 0
	populateCities();
	
	//Step 1
	for(var i=0; i<city_select.length; i++){	
		if(city_select[i].value == passed_city){
			city_select[i].selected = true;
			break;
		}
	}
	
	//Step 2
	
	//This check is a hack to store against it running twice
	//when we don't want it to
	if(passed_neighborhood != 'all'){
		populateAreas();
		
		//Step 3 - Order doesn't matter beyond here.
		for(var i=0; i<neighborhood_select.length; i++){	
			if(neighborhood_select[i].value == passed_neighborhood){
				neighborhood_select[i].selected = true;
				break;
			}
		}
	}
	for(var i=0; i<city_select.length; i++){	
		if(city_select[i].value == passed_city){
			city_select[i].selected = true;
			break;
		}
	}
	
	for(var i=0; i<beds_select.length; i++){	
		if(beds_select[i].value == passed_beds){
			beds_select[i].selected = true;
			break;
		}
	}
	
	for(var i=0; i<baths_select.length; i++){
		if(baths_select[i].value == passed_baths){
			baths_select[i].selected = true;
			break;
		}
	}
	
	for(var i=0; i<min_price_select.length; i++){
		if(min_price_select[i].value == passed_minprice){
			min_price_select[i].selected = true;
			break;
		}
	}
	
	for(var i=0; i<max_price_select.length; i++){
		if(max_price_select[i].value == passed_maxprice){
			max_price_select[i].selected = true;
			break;
		}
	}

}

/**
 * Adjusts the range automatically
 * 
 * @param select are we adjusting the Min or the Max
 * @return
 */
function adjustRange(select) {
	var max_price_select = $('#max_price')[0];
	var min_price_select = $('#min_price')[0];
	
	for(var i=0; i<min_price_select.length; i++){
		if(min_price_select[i].selected == true){
			min_index = i;
			break;
		}
	}
	
	for(var i=0; i<max_price_select.length; i++){
		if(max_price_select[i].selected == true){
			max_index = i;
			break;
		}
	}
	
	if(select == 'min'){
		if(min_index >= max_index){
			//If we select $5M both need to be selected at $5M
			if(min_index == min_price_select.length-1){
				max_price_select.selectedIndex = max_price_select.length-1;
			}else{
				max_price_select.selectedIndex = min_index + 1;
			}
		}
	}else if(select == 'max'){
		if(min_index >= max_index){
			//If we select $0 both need to be set there
			if(max_index == 0){
				min_price_select.selectedIndex = 0;
			}else{
				min_price_select.selectedIndex = max_index - 1;
			}
		}
	}
}

function citySelect() {
	populateAreas();
}

function checkSignupForm(){
	var error = false;
	if(document.register.first_name.value=='')	{
		$('.sem_visitor_modal .customer_response').css('display', 'block');
		$('.sem_visitor_modal .customer_response .text').append("Please enter your <b>First Name</b>.<br>");
		document.register.first_name.focus();
		error = true;
	}
	if(document.register.last_name.value=='')	{
		$('.sem_visitor_modal .customer_response').css('display', 'block');
		$('.sem_visitor_modal .customer_response .text').append("Please enter your <b>Last Name</b>.<br>");
		document.register.last_name.focus();
		error = true;
	}
	
	if(document.register.password.value=='')	{
		$('.sem_visitor_modal .customer_response').css('display', 'block');
		$('.sem_visitor_modal .customer_response .text').append("Please enter valid <b>Password</b>.<br>");
		document.register.password.focus();
		error = true;
	}else if(document.register.password.value.length<=4)	{
		$('.sem_visitor_modal .customer_response').css('display', 'block');
		$('.sem_visitor_modal .customer_response .text').append("Your <b>Password</b> is not long enough.<br>");
		document.register.password.focus();
		error = true;
	}
	
	if(document.register.email.value=='')	{
		$('.sem_visitor_modal .customer_response').css('display', 'block');
		$('.sem_visitor_modal .customer_response .text').append("Please enter a valid <b>E-mail</b>.<br>");
		document.register.email.focus();
		error = true;
	}else if(document.register.email.value.indexOf('@')==-1||document.register.email.value.indexOf('.')==-1)	{
		$('.sem_visitor_modal .customer_response').css('display', 'block');
		$('.sem_visitor_modal .customer_response .text').append("lease enter a valid <b>E-mail</b>.<br>");
		document.register.email.focus();
		error = true;
	}
	
	if(document.register.phone1.value=='')	{
		$('.sem_visitor_modal .customer_response').css('display', 'block');
		$('.sem_visitor_modal .customer_response .text').append("Please enter a <b>Phone Number</b>.<br>");
		document.register.phone1.focus();
		error = true;
	}
	
	if(error){
		return false;
	}
	
	$('#sem_visitor_modal').jqmHide();
}

function mlsNavbarBinds(){
	
	$('.mls_navbar .interactive_map').click(function(e){
		mlsNavbarClearCurrent();
		$(this).addClass('current');
		$('#interactivemap_modal_container').jqmShow();
		$('#search_iframe').attr('src', 'http://www.northwestidx.com/index-map.php?site_id=40680');
	});

	$('.mls_navbar .quick_search').click(function(e){
		mlsNavbarClearCurrent();
		$(this).addClass('current');
		$('#search_iframe').attr('src', mls_qs_link);
		$('#interactivemap_modal_container').jqmHide();
	});
	
	$('.mls_navbar .advanced_search').click(function(e){
		mlsNavbarClearCurrent();
		$(this).addClass('current');
		$('#search_iframe').attr('src', 'http://www.northwestidx.com/index.php?site_id=40680&use_map=advanced_search');
		$('#interactivemap_modal_container').jqmHide();
	});
	
	$('.mls_navbar .my_account').click(function(e){
		mlsNavbarClearCurrent();
		$(this).addClass('current');
		$('#search_iframe').attr('src', 'http://www.northwestidx.com/realty_watcher_signed_in.php?site_id=40680');
		$('#interactivemap_modal_container').jqmHide();
	});
}

function mlsNavbarClearCurrent(){
	$('.mls_navbar_link').removeClass('current');
}


function populateAreas() {
	// get array values from form
	area_select = $('#selectNeighborhood')[0];
	city_select = $('#selectCity')[0];
	
	// clear current area option list
	area_select.options.length = 0;
	
	// loop through county list and repopulate city list
	option_counter = 0;
	
	for (i = 0; i < city_select.length; i++) {
		if (city_select[i].selected == true) {
			
			var city_area = city_select[i].value;
			var pos_under = city_area.indexOf('_');
			if(pos_under != -1)
				var city_name = city_area.substring(0, pos_under)
			else
				var city_name = city_area.substring(pos_under + 1);
			
			var this_city = nic[city_name];
			if (city_name != "ALL") {
			
				//area_select.options[option_counter++] = new Option('All ' +  city_name + ' Neighborhoods', city_select[i].value + '_ALL' );
				area_select.options[option_counter++] = new Option('All ' +  city_name + ' Neighborhoods', 'all' );
				for (j = 0; j < this_city.length; j++) {
					if(typeof this_city[j] != 'undefined'){
						area_select.options[option_counter] = new Option(this_city[j], this_city[j]); //city_select[i].value + '_' + 
						if (area_buffer[city_select[i].value + '_' + this_city[j]] == true) {
							area_select.options[option_counter].selected = true;
						}
						option_counter++;
					}
				}
			}
		}
	}
}
function populateCities() {

	// get array values from form
	city_select = $('#selectCity')[0];
	county_select = $('#selectCounty')[0];
	area_select = $('#selectNeighborhood')[0];
	
	// clear current city option list
	city_select.options.length = 0;
	
	// loop through county list and repopulate city list
	option_counter = 0;
	for (i = 0; i < county_select.length; i++) {
		if (county_select[i].selected == true) {
			//alert(county_select[i].value + ' ' + cic.length);
			var cur_county = cic[county_select[i].value];
			//city_select.options[option_counter++] = new Option('-- ' + county_select[i].value + '\'s Cities --', county_select[i].value + '_ALL');
			city_select.options[option_counter++] = new Option('-- ' + county_select[i].value + ' County\'s Cities --', 'all');
			area_select.options.length = 0;
			//area_select.options[0] = new Option('-- All ' + county_select[i].value + '\'s Neighborhoods --', county_select[i].value + '_ALL');
			area_select.options[0] = new Option('-- ' + county_select[i].value + ' County\'s Neighborhoods --', 'all');
			for (j = 0; j < cur_county.length; j++) {
				
				city_select.options[option_counter] = new Option(cur_county[j], cur_county[j]); //county_select[i].value + '_' + 				
				if (city_buffer[county_select[i].value + '_' + cur_county[j]] == true) {
					city_select.options[option_counter].selected = true;
				}
				
				option_counter++;
			}
		}
	}
}

function runQuickSearch(location) {
	var query = "http://www.northwestidx.com/saved_search.php" + "?" + "site_id=40680";
	query += "&bedrooms=" + $("#beds")[0].value;
	query += "&bathrooms=" + $("#baths")[0].value;
	query += "&price_min=" + $("#min_price")[0].value;
	query += "&price_max=" + $("#max_price")[0].value;

	query += "&county=" + $("#selectCounty")[0].value;
	if($("#selectCity")[0].value.search('_ALL') != -1){
		query += "&city=All";
	}else{
		query += "&city=" + $("#selectCity")[0].value;
	}
	if($("#selectNeighborhood")[0].value.search('_ALL') != -1){
		query += "&community=All";
	}else{
		query += "&community=" + $("#selectNeighborhood")[0].value;
	}

	//alert(query);
	//We need to change the quicksearch link, and then perform the click iteslf to change the page over.
	mls_qs_link = query;
	$('.mls_navbar .quick_search').click();
	//$('#search_iframe').attr("src", query);
	

}

function semVisitorActivate(){
	$('#sem_visitor_modal').jqm({
		overlay: 40,
		overlayClass: 'sem_visitor_overlay',
		onShow: function (hash) {
			$('input[name="first_name"]').blur();
			hash.w.show();
			hash.o.show();
		},
		onHide: function (hash) {
			hash.w.hide();
			hash.o.hide();
			$('#sem_visitor_modal').hide();
			$.cookie('sem_visitor_modal_hide', true, {expires: 999});
		},
		modal: true	
	});
	$("#sem_visitor_modal").jqmAddClose('#sem_visitor_modal .close, #whyRegisterButton');
	$('#sem_visitor_modal').jqmShow();
}

function semVisitorTimeout(){
	$().ready( function(){
		//if(!$.cookie('sem_visitor_modal_hide') || true)
		if(!$.cookie('sem_visitor_modal_hide'))
			semVisitorActivate();
			//setTimeout('semVisitorActivate();', 60000);
			//setTimeout('semVisitorActivate();', 1200);
	});
	
}

function selectCounty(county){
	if ($('#selectCity')[0]) populateCities();
}

/**************
 * City List!
 **************/
var cic = new Array();
var nic = new Array();
cic = [];
nic = [];
cic['Adams'] = new Array();
cic['Adams'][0] = 'Benge';
cic['Adams'][1] = 'Lind';
cic['Adams'][2] = 'Othello';
cic['Adams'][3] = 'Ritzville';
cic['Adams'][4] = 'Washtucna';
cic['Asotin'] = new Array();
cic['Asotin'][0] = 'Clarkston';
cic['Benton'] = new Array();
cic['Benton'][0] = 'Benton City';
cic['Benton'][1] = 'Kennewick';
cic['Benton'][2] = 'Prosser';
cic['Benton'][3] = 'Richland';
cic['Benton'][4] = 'West Richland';
cic['Chelan'] = new Array();
cic['Chelan'][0] = 'Ardenvoir';
cic['Chelan'][1] = 'Cashmere';
cic['Chelan'][2] = 'Chelan';
cic['Chelan'][3] = 'Chelan Falls';
cic['Chelan'][4] = 'Dryden';
cic['Chelan'][5] = 'Entiat';
cic['Chelan'][6] = 'Leavenworth';
cic['Chelan'][7] = 'Malaga';
cic['Chelan'][8] = 'Manson';
cic['Chelan'][9] = 'Monitor';
cic['Chelan'][10] = 'Peshastin';
cic['Chelan'][11] = 'Wenatchee';
cic['Clallam'] = new Array();
cic['Clallam'][0] = 'Beaver';
cic['Clallam'][1] = 'Carlsborg';
cic['Clallam'][2] = 'Clallam Bay';
cic['Clallam'][3] = 'Forks';
cic['Clallam'][4] = 'Joyce';
cic['Clallam'][5] = 'La Push';
cic['Clallam'][6] = 'Neah Bay';
cic['Clallam'][7] = 'Port Angeles';
cic['Clallam'][8] = 'Sekiu';
cic['Clallam'][9] = 'Sequim';
cic['Clark'] = new Array();
cic['Clark'][0] = 'Amboy';
cic['Clark'][1] = 'Battle Ground';
cic['Clark'][2] = 'Brush Prairie';
cic['Clark'][3] = 'Camas';
cic['Clark'][4] = 'Hockinson';
cic['Clark'][5] = 'La Center';
cic['Clark'][6] = 'Ridgefield';
cic['Clark'][7] = 'Vancouver';
cic['Clark'][8] = 'Washougal';
cic['Clark'][9] = 'Woodland';
cic['Clark'][10] = 'Yacolt';
cic['Columbia'] = new Array();
cic['Columbia'][0] = 'Dayton';
cic['Columbia'][1] = 'Starbuck';
cic['Columbia'][2] = 'Waitsburg';
cic['Cowlitz'] = new Array();
cic['Cowlitz'][0] = 'Ariel';
cic['Cowlitz'][1] = 'Carrolls';
cic['Cowlitz'][2] = 'Castle Rock';
cic['Cowlitz'][3] = 'Cougar';
cic['Cowlitz'][4] = 'Kalama';
cic['Cowlitz'][5] = 'Kelso';
cic['Cowlitz'][6] = 'Longview';
cic['Cowlitz'][7] = 'Ryderwood';
cic['Cowlitz'][8] = 'Silverlake';
cic['Cowlitz'][9] = 'Toutle';
cic['Cowlitz'][10] = 'Woodland';
cic['Douglas'] = new Array();
cic['Douglas'][0] = 'Bridgeport';
cic['Douglas'][1] = 'Chelan Falls';
cic['Douglas'][2] = 'Coulee City';
cic['Douglas'][3] = 'Coulee Dam';
cic['Douglas'][4] = 'East Wenatchee';
cic['Douglas'][5] = 'Grand Coulee';
cic['Douglas'][6] = 'Mansfield';
cic['Douglas'][7] = 'Orondo';
cic['Douglas'][8] = 'Palisades';
cic['Douglas'][9] = 'Quincy';
cic['Douglas'][10] = 'Rock Island';
cic['Douglas'][11] = 'Waterville';
cic['Ferry'] = new Array();
cic['Ferry'][0] = 'Curlew';
cic['Ferry'][1] = 'Danville';
cic['Ferry'][2] = 'Inchelium';
cic['Ferry'][3] = 'Keller';
cic['Ferry'][4] = 'Kettle Falls';
cic['Ferry'][5] = 'Laurier';
cic['Ferry'][6] = 'Malo';
cic['Ferry'][7] = 'Orient';
cic['Ferry'][8] = 'Republic';
cic['Franklin'] = new Array();
cic['Franklin'][0] = 'Connell';
cic['Franklin'][1] = 'Eltopia';
cic['Franklin'][2] = 'Kahlotus';
cic['Franklin'][3] = 'Mesa';
cic['Franklin'][4] = 'Pasco';
cic['Garfield'] = new Array();
cic['Garfield'][0] = 'Pomeroy';
cic['Grant'] = new Array();
cic['Grant'][0] = 'Beverly';
cic['Grant'][1] = 'Coulee City';
cic['Grant'][2] = 'Coulee Dam';
cic['Grant'][3] = 'Electric City';
cic['Grant'][4] = 'Ephrata';
cic['Grant'][5] = 'George';
cic['Grant'][6] = 'Grand Coulee';
cic['Grant'][7] = 'Hartline';
cic['Grant'][8] = 'Marlin';
cic['Grant'][9] = 'Mattawa';
cic['Grant'][10] = 'Moses Lake';
cic['Grant'][11] = 'Othello';
cic['Grant'][12] = 'Quincy';
cic['Grant'][13] = 'Royal City';
cic['Grant'][14] = 'Soap Lake';
cic['Grant'][15] = 'Stratford';
cic['Grant'][16] = 'Warden';
cic['Grant'][17] = 'Wilson Creek';
cic['Grays Harbor'] = new Array();
cic['Grays Harbor'][0] = 'Aberdeen';
cic['Grays Harbor'][1] = 'Amanda Park';
cic['Grays Harbor'][2] = 'Copalis Beach';
cic['Grays Harbor'][3] = 'Copalis Crossing';
cic['Grays Harbor'][4] = 'Cosmopolis';
cic['Grays Harbor'][5] = 'Elma';
cic['Grays Harbor'][6] = 'Grayland';
cic['Grays Harbor'][7] = 'Hoquiam';
cic['Grays Harbor'][8] = 'Humptulips';
cic['Grays Harbor'][9] = 'Malone';
cic['Grays Harbor'][10] = 'McCleary';
cic['Grays Harbor'][11] = 'Moclips';
cic['Grays Harbor'][12] = 'Montesano';
cic['Grays Harbor'][13] = 'Neilton';
cic['Grays Harbor'][14] = 'Oakville';
cic['Grays Harbor'][15] = 'Ocean City';
cic['Grays Harbor'][16] = 'Ocean Shores';
cic['Grays Harbor'][17] = 'Ocosta';
cic['Grays Harbor'][18] = 'Oyhut';
cic['Grays Harbor'][19] = 'Pacific Beach';
cic['Grays Harbor'][20] = 'Quinault';
cic['Grays Harbor'][21] = 'Raymond';
cic['Grays Harbor'][22] = 'Satsop';
cic['Grays Harbor'][23] = 'South Bend';
cic['Grays Harbor'][24] = 'Taholah';
cic['Grays Harbor'][25] = 'Westport';
cic['Island'] = new Array();
cic['Island'][0] = 'Camano Island';
cic['Island'][1] = 'Clinton';
cic['Island'][2] = 'Coupeville';
cic['Island'][3] = 'Freeland';
cic['Island'][4] = 'Greenbank';
cic['Island'][5] = 'Langley';
cic['Island'][6] = 'Oak Harbor';
cic['Island'][7] = 'Stanwood';
cic['Island'][8] = 'Whidbey Island';
cic['Jefferson'] = new Array();
cic['Jefferson'][0] = 'Brinnon';
cic['Jefferson'][1] = 'Chimacum';
cic['Jefferson'][2] = 'Forks';
cic['Jefferson'][3] = 'Gardener';
cic['Jefferson'][4] = 'Gardiner';
cic['Jefferson'][5] = 'Nordland';
cic['Jefferson'][6] = 'Port Hadlock';
cic['Jefferson'][7] = 'Port Ludlow';
cic['Jefferson'][8] = 'Port Townsend';
cic['Jefferson'][9] = 'Queets';
cic['Jefferson'][10] = 'Quilcene';
cic['Jefferson'][11] = 'Sequim';
cic['King'] = new Array();
cic['King'][0] = 'Algona';
cic['King'][1] = 'Auburn';
cic['King'][2] = 'Baring';
cic['King'][3] = 'Beaux Arts';
cic['King'][4] = 'Bellevue';
cic['King'][5] = 'Black Diamond';
cic['King'][6] = 'Bothell';
cic['King'][7] = 'Burien';
cic['King'][8] = 'Burton';
cic['King'][9] = 'Carnation';
cic['King'][10] = 'Clyde Hill';
cic['King'][11] = 'Covington';
cic['King'][12] = 'Des Moines';
cic['King'][13] = 'Duvall';
cic['King'][14] = 'Enumclaw';
cic['King'][15] = 'Fall City';
cic['King'][16] = 'Federal Way';
cic['King'][17] = 'Greenwater';
cic['King'][18] = 'Hobart';
cic['King'][19] = 'Hunts Point';
cic['King'][20] = 'Issaquah';
cic['King'][21] = 'Juanita';
cic['King'][22] = 'Kenmore';
cic['King'][23] = 'Kent';
cic['King'][24] = 'Kirkland';
cic['King'][25] = 'Lake City';
cic['King'][26] = 'Lake Forest Park';
cic['King'][27] = 'Maple Valley';
cic['King'][28] = 'Medina';
cic['King'][29] = 'Mercer Island';
cic['King'][30] = 'Milton';
cic['King'][31] = 'Newcastle';
cic['King'][32] = 'Newport Hills';
cic['King'][33] = 'Normandy Park';
cic['King'][34] = 'North Bend';
cic['King'][35] = 'Pacific';
cic['King'][36] = 'Preston';
cic['King'][37] = 'Ravensdale';
cic['King'][38] = 'Redmond';
cic['King'][39] = 'Renton';
cic['King'][40] = 'Sammamish';
cic['King'][41] = 'Seahurst';
cic['King'][42] = 'SeaTac';
cic['King'][43] = 'Seattle';
cic['King'][44] = 'Shoreline';
cic['King'][45] = 'Skykomish';
cic['King'][46] = 'Snoqualmie';
cic['King'][47] = 'Snoqualmie Pass';
cic['King'][48] = 'Tukwila';
cic['King'][49] = 'Vashon';
cic['King'][50] = 'Woodinville';
cic['King'][51] = 'Yarrow Point';
cic['Kitsap'] = new Array();
cic['Kitsap'][0] = 'Bainbridge Island';
cic['Kitsap'][1] = 'Bremerton';
cic['Kitsap'][2] = 'Burley';
cic['Kitsap'][3] = 'Gig Harbor';
cic['Kitsap'][4] = 'Hansville';
cic['Kitsap'][5] = 'Indianola';
cic['Kitsap'][6] = 'Keyport';
cic['Kitsap'][7] = 'Kingston';
cic['Kitsap'][8] = 'Manchester';
cic['Kitsap'][9] = 'Olalla';
cic['Kitsap'][10] = 'Port Gamble';
cic['Kitsap'][11] = 'Port Orchard';
cic['Kitsap'][12] = 'Poulsbo';
cic['Kitsap'][13] = 'Seabeck';
cic['Kitsap'][14] = 'Silverdale';
cic['Kitsap'][15] = 'South Colby';
cic['Kitsap'][16] = 'Southworth';
cic['Kitsap'][17] = 'Suquamish';
cic['Kitsap'][18] = 'Tracyton';
cic['Kittitas'] = new Array();
cic['Kittitas'][0] = 'Cle Elum';
cic['Kittitas'][1] = 'Easton';
cic['Kittitas'][2] = 'Ellensburg';
cic['Kittitas'][3] = 'Kachess';
cic['Kittitas'][4] = 'Kittitas';
cic['Kittitas'][5] = 'Lake Cle Elum';
cic['Kittitas'][6] = 'Ronald';
cic['Kittitas'][7] = 'Roslyn';
cic['Kittitas'][8] = 'Snoqualmie Pass';
cic['Kittitas'][9] = 'South Cle Elum';
cic['Kittitas'][10] = 'Thorp';
cic['Kittitas'][11] = 'Vantage';
cic['Klickitat'] = new Array();
cic['Klickitat'][0] = 'Bickleton';
cic['Klickitat'][1] = 'Centerville';
cic['Klickitat'][2] = 'Goldendale';
cic['Klickitat'][3] = 'Klickitat';
cic['Klickitat'][4] = 'Lyle';
cic['Lewis'] = new Array();
cic['Lewis'][0] = 'Adna';
cic['Lewis'][1] = 'Ashford';
cic['Lewis'][2] = 'Boistfort';
cic['Lewis'][3] = 'Centralia';
cic['Lewis'][4] = 'Chehalis';
cic['Lewis'][5] = 'Cinebar';
cic['Lewis'][6] = 'Curtis';
cic['Lewis'][7] = 'Doty';
cic['Lewis'][8] = 'Dryad';
cic['Lewis'][9] = 'Ethel';
cic['Lewis'][10] = 'Galvin';
cic['Lewis'][11] = 'Glenoma';
cic['Lewis'][12] = 'Marys Corner';
cic['Lewis'][13] = 'Mineral';
cic['Lewis'][14] = 'Morton';
cic['Lewis'][15] = 'Mossyrock';
cic['Lewis'][16] = 'Napavine';
cic['Lewis'][17] = 'Oakville';
cic['Lewis'][18] = 'Onalaska';
cic['Lewis'][19] = 'Packwood';
cic['Lewis'][20] = 'Pe Ell';
cic['Lewis'][21] = 'Randle';
cic['Lewis'][22] = 'Rochester';
cic['Lewis'][23] = 'Salkum';
cic['Lewis'][24] = 'Silver Creek';
cic['Lewis'][25] = 'Toledo';
cic['Lewis'][26] = 'Vader';
cic['Lewis'][27] = 'White Pass';
cic['Lewis'][28] = 'Winlock';
cic['Lincoln'] = new Array();
cic['Lincoln'][0] = 'Almira';
cic['Lincoln'][1] = 'Creston';
cic['Lincoln'][2] = 'Davenport';
cic['Lincoln'][3] = 'Edwall';
cic['Lincoln'][4] = 'Grand Coulee';
cic['Lincoln'][5] = 'Harrington';
cic['Lincoln'][6] = 'Lincoln';
cic['Lincoln'][7] = 'Odessa';
cic['Lincoln'][8] = 'Reardan';
cic['Lincoln'][9] = 'Seven Bays';
cic['Lincoln'][10] = 'Sprague';
cic['Lincoln'][11] = 'Wilbur';
cic['Mason'] = new Array();
cic['Mason'][0] = 'Allyn';
cic['Mason'][1] = 'Belfair';
cic['Mason'][2] = 'Elma';
cic['Mason'][3] = 'Grapeview';
cic['Mason'][4] = 'Hood Canal';
cic['Mason'][5] = 'Hoodsport';
cic['Mason'][6] = 'Lilliwaup';
cic['Mason'][7] = 'Matlock';
cic['Mason'][8] = 'McCleary';
cic['Mason'][9] = 'Shelton';
cic['Mason'][10] = 'Tahuya';
cic['Mason'][11] = 'Union';
cic['Okanogan'] = new Array();
cic['Okanogan'][0] = 'Brewster';
cic['Okanogan'][1] = 'Carlton';
cic['Okanogan'][2] = 'Conconully';
cic['Okanogan'][3] = 'Coulee Dam';
cic['Okanogan'][4] = 'Elmer City';
cic['Okanogan'][5] = 'Loomis';
cic['Okanogan'][6] = 'Malott';
cic['Okanogan'][7] = 'Mazama';
cic['Okanogan'][8] = 'Methow';
cic['Okanogan'][9] = 'Nespelem';
cic['Okanogan'][10] = 'Okanogan';
cic['Okanogan'][11] = 'Omak';
cic['Okanogan'][12] = 'Oroville';
cic['Okanogan'][13] = 'Pateros';
cic['Okanogan'][14] = 'Riverside';
cic['Okanogan'][15] = 'Tonasket';
cic['Okanogan'][16] = 'Twisp';
cic['Okanogan'][17] = 'Wauconda';
cic['Okanogan'][18] = 'Winthrop';
cic['Other'] = new Array();
cic['Other'][0] = 'Eastern Washington';
cic['Other'][1] = 'Out Of Area';
cic['Pacific'] = new Array();
cic['Pacific'][0] = 'Bay Center';
cic['Pacific'][1] = 'Chinook';
cic['Pacific'][2] = 'Grayland';
cic['Pacific'][3] = 'Ilwaco';
cic['Pacific'][4] = 'Lebam';
cic['Pacific'][5] = 'Long Beach';
cic['Pacific'][6] = 'Menlo';
cic['Pacific'][7] = 'Nahcotta';
cic['Pacific'][8] = 'Naselle';
cic['Pacific'][9] = 'North Cove';
cic['Pacific'][10] = 'Ocean Park';
cic['Pacific'][11] = 'Oysterville';
cic['Pacific'][12] = 'Raymond';
cic['Pacific'][13] = 'Seaview';
cic['Pacific'][14] = 'South Bend';
cic['Pacific'][15] = 'Tokeland';
cic['Pend Orielle'] = new Array();
cic['Pend Orielle'][0] = 'Cusick';
cic['Pend Orielle'][1] = 'Ione';
cic['Pend Orielle'][2] = 'Metaline';
cic['Pend Orielle'][3] = 'Metaline Falls';
cic['Pend Orielle'][4] = 'Newport';
cic['Pend Orielle'][5] = 'Usk';
cic['Pierce'] = new Array();
cic['Pierce'][0] = 'Algona';
cic['Pierce'][1] = 'Anderson Island';
cic['Pierce'][2] = 'Ashford';
cic['Pierce'][3] = 'Auburn';
cic['Pierce'][4] = 'Bonney Lake';
cic['Pierce'][5] = 'Buckley';
cic['Pierce'][6] = 'Carbonado';
cic['Pierce'][7] = 'Dupont';
cic['Pierce'][8] = 'Eatonville';
cic['Pierce'][9] = 'Edgewood';
cic['Pierce'][10] = 'Elbe';
cic['Pierce'][11] = 'Fife';
cic['Pierce'][12] = 'Fircrest';
cic['Pierce'][13] = 'Fox Island';
cic['Pierce'][14] = 'Gig Harbor';
cic['Pierce'][15] = 'Graham';
cic['Pierce'][16] = 'Greenwater';
cic['Pierce'][17] = 'Kapowsin';
cic['Pierce'][18] = 'Lake Tapps';
cic['Pierce'][19] = 'Lakebay';
cic['Pierce'][20] = 'Lakewood';
cic['Pierce'][21] = 'Longbranch';
cic['Pierce'][22] = 'McKenna';
cic['Pierce'][23] = 'Milton';
cic['Pierce'][24] = 'Orting';
cic['Pierce'][25] = 'Pacific';
cic['Pierce'][26] = 'Parkland';
cic['Pierce'][27] = 'Purdy';
cic['Pierce'][28] = 'Puyallup';
cic['Pierce'][29] = 'Roy';
cic['Pierce'][30] = 'Ruston';
cic['Pierce'][31] = 'South Prairie';
cic['Pierce'][32] = 'Spanaway';
cic['Pierce'][33] = 'Steilacoom';
cic['Pierce'][34] = 'Sumner';
cic['Pierce'][35] = 'Tacoma';
cic['Pierce'][36] = 'University Place';
cic['Pierce'][37] = 'Vaughn';
cic['Pierce'][38] = 'Wauna';
cic['Pierce'][39] = 'Wilkeson';
cic['San Juan'] = new Array();
cic['San Juan'][0] = 'Blakely Island';
cic['San Juan'][1] = 'Brown Island';
cic['San Juan'][2] = 'Center Island';
cic['San Juan'][3] = 'Crane Island';
cic['San Juan'][4] = 'Decatur Island';
cic['San Juan'][5] = 'Frost Island';
cic['San Juan'][6] = 'Henry Island';
cic['San Juan'][7] = 'Johns Island';
cic['San Juan'][8] = 'Lopez Island';
cic['San Juan'][9] = 'Obstruction Island';
cic['San Juan'][10] = 'Orcas Island';
cic['San Juan'][11] = 'Pearl Island';
cic['San Juan'][12] = 'San Juan Island';
cic['San Juan'][13] = 'Shaw Island';
cic['San Juan'][14] = 'Stuart Island';
cic['San Juan'][15] = 'Waldron Island';
cic['Skagit'] = new Array();
cic['Skagit'][0] = 'Alger';
cic['Skagit'][1] = 'Anacortes';
cic['Skagit'][2] = 'Bayview';
cic['Skagit'][3] = 'Bellingham';
cic['Skagit'][4] = 'Big Lake';
cic['Skagit'][5] = 'Birdsview';
cic['Skagit'][6] = 'Blanchard';
cic['Skagit'][7] = 'Bow';
cic['Skagit'][8] = 'Burlington';
cic['Skagit'][9] = 'Clear Lake';
cic['Skagit'][10] = 'Concrete';
cic['Skagit'][11] = 'Conway';
cic['Skagit'][12] = 'Darrington';
cic['Skagit'][13] = 'Edison';
cic['Skagit'][14] = 'Guemes Island';
cic['Skagit'][15] = 'Hamilton';
cic['Skagit'][16] = 'La Conner';
cic['Skagit'][17] = 'Lake McMurray';
cic['Skagit'][18] = 'Lyman';
cic['Skagit'][19] = 'Marblemount';
cic['Skagit'][20] = 'Mount Vernon';
cic['Skagit'][21] = 'Rockport';
cic['Skagit'][22] = 'Samish Island';
cic['Skagit'][23] = 'Sedro Woolley';
cic['Skamania'] = new Array();
cic['Skamania'][0] = 'Anacortes';
cic['Skamania'][1] = 'Carson';
cic['Skamania'][2] = 'North Bonneville';
cic['Skamania'][3] = 'Skamania';
cic['Skamania'][4] = 'Stevenson';
cic['Skamania'][5] = 'Washougal';
cic['Snohomish'] = new Array();
cic['Snohomish'][0] = 'Alderwood';
cic['Snohomish'][1] = 'Arlington';
cic['Snohomish'][2] = 'Bothell';
cic['Snohomish'][3] = 'Brier';
cic['Snohomish'][4] = 'Clearview';
cic['Snohomish'][5] = 'Darrington';
cic['Snohomish'][6] = 'Edmonds';
cic['Snohomish'][7] = 'Everett';
cic['Snohomish'][8] = 'Gold Bar';
cic['Snohomish'][9] = 'Granite Falls';
cic['Snohomish'][10] = 'Hat Island';
cic['Snohomish'][11] = 'Index';
cic['Snohomish'][12] = 'Lake Stevens';
cic['Snohomish'][13] = 'Lynnwood';
cic['Snohomish'][14] = 'Machias';
cic['Snohomish'][15] = 'Maltby';
cic['Snohomish'][16] = 'Marysville';
cic['Snohomish'][17] = 'Mill Creek';
cic['Snohomish'][18] = 'Monroe';
cic['Snohomish'][19] = 'Mountlake Terrace';
cic['Snohomish'][20] = 'Mukilteo';
cic['Snohomish'][21] = 'Silvana';
cic['Snohomish'][22] = 'Snohomish';
cic['Snohomish'][23] = 'Stanwood';
cic['Snohomish'][24] = 'Startup';
cic['Snohomish'][25] = 'Sultan';
cic['Snohomish'][26] = 'Tulalip';
cic['Snohomish'][27] = 'Woodinville';
cic['Snohomish'][28] = 'Woodway';
cic['Spokane'] = new Array();
cic['Spokane'][0] = 'Airway Heights';
cic['Spokane'][1] = 'Chattaroy';
cic['Spokane'][2] = 'Cheney';
cic['Spokane'][3] = 'Colbert';
cic['Spokane'][4] = 'Deer Park';
cic['Spokane'][5] = 'Elk';
cic['Spokane'][6] = 'Greenacres';
cic['Spokane'][7] = 'Liberty Lake';
cic['Spokane'][8] = 'Mead';
cic['Spokane'][9] = 'Newman Lake';
cic['Spokane'][10] = 'Spokane';
cic['Spokane'][11] = 'Valleyford';
cic['Stevens'] = new Array();
cic['Stevens'][0] = 'Addy';
cic['Stevens'][1] = 'Chewelah';
cic['Stevens'][2] = 'Colville';
cic['Stevens'][3] = 'Evans';
cic['Stevens'][4] = 'Ford';
cic['Stevens'][5] = 'Fruitland';
cic['Stevens'][6] = 'Gifford';
cic['Stevens'][7] = 'Hunters';
cic['Stevens'][8] = 'Kettle Falls';
cic['Stevens'][9] = 'Loon Lake';
cic['Stevens'][10] = 'Marcus';
cic['Stevens'][11] = 'Nine Mile Falls';
cic['Stevens'][12] = 'Northport';
cic['Stevens'][13] = 'Rice';
cic['Stevens'][14] = 'Springdale';
cic['Stevens'][15] = 'Valley';
cic['Thurston'] = new Array();
cic['Thurston'][0] = 'Bucoda';
cic['Thurston'][1] = 'Centralia';
cic['Thurston'][2] = 'East Olympia';
cic['Thurston'][3] = 'Grand Mound';
cic['Thurston'][4] = 'Lacey';
cic['Thurston'][5] = 'Little Rock';
cic['Thurston'][6] = 'Maytown';
cic['Thurston'][7] = 'Olympia';
cic['Thurston'][8] = 'Rainier';
cic['Thurston'][9] = 'Rochester';
cic['Thurston'][10] = 'Tenino';
cic['Thurston'][11] = 'Tumwater';
cic['Thurston'][12] = 'Yelm';
cic['Wahkiakum'] = new Array();
cic['Wahkiakum'][0] = 'Cathlamet';
cic['Wahkiakum'][1] = 'Deep River';
cic['Wahkiakum'][2] = 'Grays River';
cic['Wahkiakum'][3] = 'Rosburg';
cic['Wahkiakum'][4] = 'Skamokawa';
cic['Walla Walla'] = new Array();
cic['Walla Walla'][0] = 'Burbank';
cic['Walla Walla'][1] = 'College Place';
cic['Walla Walla'][2] = 'Touchet';
cic['Walla Walla'][3] = 'Waitsburg';
cic['Walla Walla'][4] = 'Walla Walla';
cic['Whatcom'] = new Array();
cic['Whatcom'][0] = 'Acme';
cic['Whatcom'][1] = 'Bellingham';
cic['Whatcom'][2] = 'Birch Bay';
cic['Whatcom'][3] = 'Blaine';
cic['Whatcom'][4] = 'Custer';
cic['Whatcom'][5] = 'Deming';
cic['Whatcom'][6] = 'Everson';
cic['Whatcom'][7] = 'Ferndale';
cic['Whatcom'][8] = 'Glacier';
cic['Whatcom'][9] = 'Glenhaven';
cic['Whatcom'][10] = 'Kendall';
cic['Whatcom'][11] = 'Lummi Island';
cic['Whatcom'][12] = 'Lynden';
cic['Whatcom'][13] = 'Maple Falls';
cic['Whatcom'][14] = 'Nooksack';
cic['Whatcom'][15] = 'Point Roberts';
cic['Whatcom'][16] = 'Raymond';
cic['Whatcom'][17] = 'Sedro Woolley';
cic['Whatcom'][18] = 'Sumas';
cic['Whitman'] = new Array();
cic['Whitman'][0] = 'Colfax';
cic['Whitman'][1] = 'Lamont';
cic['Whitman'][2] = 'Pullman';
cic['Whitman'][3] = 'Saint John';
cic['Whitman'][4] = 'Uniontown';
cic['Yakima'] = new Array();
cic['Yakima'][0] = 'Buena';
cic['Yakima'][1] = 'Cowiche';
cic['Yakima'][2] = 'Grandview';
cic['Yakima'][3] = 'Granger';
cic['Yakima'][4] = 'Harrah';
cic['Yakima'][5] = 'Mabton';
cic['Yakima'][6] = 'Moxee';
cic['Yakima'][7] = 'Naches';
cic['Yakima'][8] = 'Outlook';
cic['Yakima'][9] = 'Selah';
cic['Yakima'][10] = 'Sunnyside';
cic['Yakima'][11] = 'Tieton';
cic['Yakima'][12] = 'Toppenish';
cic['Yakima'][13] = 'Union Gap';
cic['Yakima'][14] = 'Wapato';
cic['Yakima'][15] = 'White Swan';
cic['Yakima'][16] = 'Yakima';
cic['Yakima'][17] = 'Zillah';
nic['Aberdeen'] = new Array();
nic['Aberdeen'][0] = 'Aberdeen';
nic['Aberdeen'][1] = 'Aberdeen Gardens';
nic['Aberdeen'][2] = 'Aberdeen Highlands';
nic['Aberdeen'][3] = 'Arnold Hill';
nic['Aberdeen'][4] = 'Bench Drive';
nic['Aberdeen'][5] = 'Benns Central';
nic['Aberdeen'][6] = 'Broadway Hill';
nic['Aberdeen'][7] = 'Central Park';
nic['Aberdeen'][8] = 'Downtown';
nic['Aberdeen'][9] = 'East Aberdeen';
nic['Aberdeen'][10] = 'Finch Farms';
nic['Aberdeen'][11] = 'Grayland';
nic['Aberdeen'][12] = 'Grays Harbor City';
nic['Aberdeen'][13] = 'Hoquiam';
nic['Aberdeen'][14] = 'Junction City';
nic['Aberdeen'][15] = 'Markham';
nic['Aberdeen'][16] = 'North Aberdeen';
nic['Aberdeen'][17] = 'Ocosta';
nic['Aberdeen'][18] = 'South Aberdeen';
nic['Aberdeen'][19] = 'Union Pacific';
nic['Aberdeen'][20] = 'West Aberdeen';
nic['Aberdeen'][21] = 'Westport';
nic['Aberdeen'][22] = 'Westport Hwy';
nic['Aberdeen'][23] = 'Wishkah';
nic['Acme'] = new Array();
nic['Acme'][0] = 'Acme';
nic['Acme'][1] = 'Nooksack';
nic['Acme'][2] = 'Sedro Woolley';
nic['Acme'][3] = 'Sumas';
nic['Addy'] = new Array();
nic['Addy'][0] = 'Addy';
nic['Addy'][1] = 'Colville';
nic['Adna'] = new Array();
nic['Adna'][0] = 'Adna';
nic['Adna'][1] = 'Bunker';
nic['Adna'][2] = 'Chehalis';
nic['Adna'][3] = 'Winlock';
nic['Airway Heights'] = new Array();
nic['Airway Heights'][0] = 'Spokane';
nic['Alderwood'] = new Array();
nic['Alderwood'][0] = 'Alderwood';
nic['Alderwood'][1] = 'Alderwood Manor';
nic['Alger'] = new Array();
nic['Alger'][0] = 'Alger';
nic['Alger'][1] = 'Bellingham';
nic['Alger'][2] = 'Burlington';
nic['Algona'] = new Array();
nic['Algona'][0] = 'Algona';
nic['Algona'][1] = 'Auburn';
nic['Algona'][2] = 'Hillmans';
nic['Algona'][3] = 'Jovita Heights';
nic['Algona'][4] = 'Pacific';
nic['Algona'][5] = 'South Auburn';
nic['Algona'][6] = 'Town - Algona';
nic['Allyn'] = new Array();
nic['Allyn'][0] = 'Allyn';
nic['Allyn'][1] = 'Belfair';
nic['Allyn'][2] = 'Belwood';
nic['Allyn'][3] = 'Case Inlet';
nic['Allyn'][4] = 'Grapeview';
nic['Allyn'][5] = 'Hood Canal';
nic['Allyn'][6] = 'Lakeland Village';
nic['Allyn'][7] = 'Mason Lake';
nic['Allyn'][8] = 'Orchard Beach';
nic['Allyn'][9] = 'South Shore';
nic['Allyn'][10] = 'Treasure Island';
nic['Allyn'][11] = 'Victor';
nic['Almira'] = new Array();
nic['Almira'][0] = 'Almira';
nic['Amanda Park'] = new Array();
nic['Amanda Park'][0] = 'Amanda Park';
nic['Amanda Park'][1] = 'Forks';
nic['Amanda Park'][2] = 'Neilton';
nic['Amanda Park'][3] = 'Quinault';
nic['Amanda Park'][4] = 'Taholah';
nic['Amboy'] = new Array();
nic['Amboy'][0] = 'Amboy';
nic['Amboy'][1] = 'Chelatchie Prairie';
nic['Amboy'][2] = 'Farger Lake';
nic['Amboy'][3] = 'Lake Merwin';
nic['Amboy'][4] = 'Vancouver';
nic['Amboy'][5] = 'Woodland';
nic['Anacortes'] = new Array();
nic['Anacortes'][0] = 'Anacortes';
nic['Anacortes'][1] = 'Beale\'s Maple Grove';
nic['Anacortes'][2] = 'Biz Point';
nic['Anacortes'][3] = 'Campbell Lake';
nic['Anacortes'][4] = 'Cap Sante';
nic['Anacortes'][5] = 'Cedar Springs';
nic['Anacortes'][6] = 'Channel View';
nic['Anacortes'][7] = 'City';
nic['Anacortes'][8] = 'City South';
nic['Anacortes'][9] = 'Clearidge';
nic['Anacortes'][10] = 'Cranberry Heights';
nic['Anacortes'][11] = 'Creekside';
nic['Anacortes'][12] = 'Cypress Island';
nic['Anacortes'][13] = 'Del Mar';
nic['Anacortes'][14] = 'Dewey Beach';
nic['Anacortes'][15] = 'Fidalgo Bay';
nic['Anacortes'][16] = 'Fidalgo City';
nic['Anacortes'][17] = 'Gibralter';
nic['Anacortes'][18] = 'Guemes';
nic['Anacortes'][19] = 'Guemes Island';
nic['Anacortes'][20] = 'Island View';
nic['Anacortes'][21] = 'Marine Heights';
nic['Anacortes'][22] = 'Old Town';
nic['Anacortes'][23] = 'Parkside';
nic['Anacortes'][24] = 'Rockridge';
nic['Anacortes'][25] = 'Rosario';
nic['Anacortes'][26] = 'Seaview';
nic['Anacortes'][27] = 'Similk Beach';
nic['Anacortes'][28] = 'Sinclair Island';
nic['Anacortes'][29] = 'Skyline';
nic['Anacortes'][30] = 'Stittwood';
nic['Anacortes'][31] = 'Sunset Cove';
nic['Anacortes'][32] = 'The Pointe';
nic['Anacortes'][33] = 'Whistle Lake';
nic['Anderson Island'] = new Array();
nic['Anderson Island'][0] = 'Anderson Island';
nic['Anderson Island'][1] = 'Ketron Island';
nic['Anderson Island'][2] = 'Lake Josephine';
nic['Anderson Island'][3] = 'Villa Beach';
nic['Ardenvoir'] = new Array();
nic['Ardenvoir'][0] = 'Entiat';
nic['Ariel'] = new Array();
nic['Ariel'][0] = 'Ariel';
nic['Ariel'][1] = 'Kalama';
nic['Ariel'][2] = 'Woodland';
nic['Arlington'] = new Array();
nic['Arlington'][0] = 'Alderwood';
nic['Arlington'][1] = 'Arlington';
nic['Arlington'][2] = 'Arlington Heights';
nic['Arlington'][3] = 'Blue Spruce';
nic['Arlington'][4] = 'Brandstrom';
nic['Arlington'][5] = 'Bryant';
nic['Arlington'][6] = 'Burn Road';
nic['Arlington'][7] = 'Cicero';
nic['Arlington'][8] = 'Crown Ridge';
nic['Arlington'][9] = 'Darrington';
nic['Arlington'][10] = 'Downtown';
nic['Arlington'][11] = 'Eagle Ridge';
nic['Arlington'][12] = 'Edgecomb';
nic['Arlington'][13] = 'Everett';
nic['Arlington'][14] = 'Fraley Mountain';
nic['Arlington'][15] = 'Getchell';
nic['Arlington'][16] = 'Getchell Hill';
nic['Arlington'][17] = 'Gleneagle';
nic['Arlington'][18] = 'Golf Course';
nic['Arlington'][19] = 'Grandview';
nic['Arlington'][20] = 'Granite Falls';
nic['Arlington'][21] = 'High Clover Park';
nic['Arlington'][22] = 'Historic Downtown';
nic['Arlington'][23] = 'In Town';
nic['Arlington'][24] = 'In Town - Arlington';
nic['Arlington'][25] = 'Island Crossing';
nic['Arlington'][26] = 'Jensen Farm';
nic['Arlington'][27] = 'Jim Creek';
nic['Arlington'][28] = 'Jordan Ridge/River';
nic['Arlington'][29] = 'Jordan Road';
nic['Arlington'][30] = 'Kackman';
nic['Arlington'][31] = 'Klackman';
nic['Arlington'][32] = 'Kona Crest';
nic['Arlington'][33] = 'Lake Goodwin';
nic['Arlington'][34] = 'Lake Ki';
nic['Arlington'][35] = 'Lake Riley';
nic['Arlington'][36] = 'Lakewood';
nic['Arlington'][37] = 'Lauck Hill';
nic['Arlington'][38] = 'Marysville';
nic['Arlington'][39] = 'Mount Vernon';
nic['Arlington'][40] = 'North Arlington';
nic['Arlington'][41] = 'North Everett';
nic['Arlington'][42] = 'North Marysville';
nic['Arlington'][43] = 'Old Town';
nic['Arlington'][44] = 'Oso';
nic['Arlington'][45] = 'Pilchuck River';
nic['Arlington'][46] = 'Pioneer Hills';
nic['Arlington'][47] = 'Rainbow Springs';
nic['Arlington'][48] = 'Seven Lakes';
nic['Arlington'][49] = 'Silvana';
nic['Arlington'][50] = 'Sisco Heights';
nic['Arlington'][51] = 'Smokey Point';
nic['Arlington'][52] = 'Snohomish';
nic['Arlington'][53] = 'South Arlington';
nic['Arlington'][54] = 'Squire Creek';
nic['Arlington'][55] = 'Stanwood';
nic['Arlington'][56] = 'Stanwood-bryant';
nic['Arlington'][57] = 'Stilly';
nic['Arlington'][58] = 'Trafton';
nic['Arlington'][59] = 'Upper Ridge';
nic['Arlington'][60] = 'Victoria Heights';
nic['Arlington'][61] = 'Whitehorse';
nic['Ashford'] = new Array();
nic['Ashford'][0] = 'Ashford';
nic['Ashford'][1] = 'Echo Valley';
nic['Ashford'][2] = 'Elbe';
nic['Ashford'][3] = 'Mt Rainier';
nic['Ashford'][4] = 'National';
nic['Auburn'] = new Array();
nic['Auburn'][0] = '5 Mile Lake';
nic['Auburn'][1] = 'Academy';
nic['Auburn'][2] = 'Auburn';
nic['Auburn'][3] = 'Auburn Heights';
nic['Auburn'][4] = 'Berkshire Glen';
nic['Auburn'][5] = 'Black Diamond';
nic['Auburn'][6] = 'Bonney Lake';
nic['Auburn'][7] = 'Bonney Lake/Buckley';
nic['Auburn'][8] = 'Camelot Park';
nic['Auburn'][9] = 'Cedar Park';
nic['Auburn'][10] = 'Cobble Creek';
nic['Auburn'][11] = 'Covington';
nic['Auburn'][12] = 'Dash Point';
nic['Auburn'][13] = 'Des Moines';
nic['Auburn'][14] = 'Downtown - Auburn';
nic['Auburn'][15] = 'East Auburn';
nic['Auburn'][16] = 'East Hill';
nic['Auburn'][17] = 'Edgewood';
nic['Auburn'][18] = 'Elk Run Golf Course';
nic['Auburn'][19] = 'Enchanted Village';
nic['Auburn'][20] = 'Enumclaw';
nic['Auburn'][21] = 'Federal Way';
nic['Auburn'][22] = 'Flaming Geyser';
nic['Auburn'][23] = 'Forest Villa';
nic['Auburn'][24] = 'Game Farm';
nic['Auburn'][25] = 'Green River';
nic['Auburn'][26] = 'Green River College';
nic['Auburn'][27] = 'Green Valley';
nic['Auburn'][28] = 'Highlands';
nic['Auburn'][29] = 'Hillmans';
nic['Auburn'][30] = 'Horseshoe Lake';
nic['Auburn'][31] = 'Janssen\'s';
nic['Auburn'][32] = 'Jornada';
nic['Auburn'][33] = 'Jovita';
nic['Auburn'][34] = 'Jovita Heights';
nic['Auburn'][35] = 'Kent';
nic['Auburn'][36] = 'Killarney';
nic['Auburn'][37] = 'Lake Dolloff';
nic['Auburn'][38] = 'Lake Fenwick';
nic['Auburn'][39] = 'Lake Geneva';
nic['Auburn'][40] = 'Lake Holm';
nic['Auburn'][41] = 'Lake Killarney';
nic['Auburn'][42] = 'Lake Meridian';
nic['Auburn'][43] = 'Lake Moneysmith';
nic['Auburn'][44] = 'Lake Morton';
nic['Auburn'][45] = 'Lake Tapps';
nic['Auburn'][46] = 'Lakeland';
nic['Auburn'][47] = 'Lea Hill';
nic['Auburn'][48] = 'Maple Valley';
nic['Auburn'][49] = 'Milton';
nic['Auburn'][50] = 'Mirror Lake';
nic['Auburn'][51] = 'North East Auburn';
nic['Auburn'][52] = 'North EnumcLaw';
nic['Auburn'][53] = 'North Lake';
nic['Auburn'][54] = 'Nw Lake Tapps';
nic['Auburn'][55] = 'Pacific';
nic['Auburn'][56] = 'S Federal Way';
nic['Auburn'][57] = 'Soos Creek';
nic['Auburn'][58] = 'South Auburn';
nic['Auburn'][59] = 'Star Lake';
nic['Auburn'][60] = 'Steel Lake';
nic['Auburn'][61] = 'Super Mall';
nic['Auburn'][62] = 'Wabash';
nic['Auburn'][63] = 'Washington National';
nic['Auburn'][64] = 'West Auburn';
nic['Auburn'][65] = 'West Campus';
nic['Auburn'][66] = 'West Hill';
nic['Auburn'][67] = 'White River/Park';
nic['Auburn'][68] = 'Willow Park';
nic['Bainbridge Island'] = new Array();
nic['Bainbridge Island'][0] = 'Agate Point';
nic['Bainbridge Island'][1] = 'Arrow Point';
nic['Bainbridge Island'][2] = 'Bainbridge';
nic['Bainbridge Island'][3] = 'Bainbridge Island';
nic['Bainbridge Island'][4] = 'Baker Hill';
nic['Bainbridge Island'][5] = 'Battle Point';
nic['Bainbridge Island'][6] = 'Bill Point';
nic['Bainbridge Island'][7] = 'Commodore';
nic['Bainbridge Island'][8] = 'Crystal Springs';
nic['Bainbridge Island'][9] = 'Eagle Harbor';
nic['Bainbridge Island'][10] = 'Eagledale';
nic['Bainbridge Island'][11] = 'Emerald Heights';
nic['Bainbridge Island'][12] = 'Ferncliff';
nic['Bainbridge Island'][13] = 'Fletcher Bay';
nic['Bainbridge Island'][14] = 'Fort Ward';
nic['Bainbridge Island'][15] = 'Gazzam Lake';
nic['Bainbridge Island'][16] = 'Hillandale';
nic['Bainbridge Island'][17] = 'Island Center';
nic['Bainbridge Island'][18] = 'Manitou Beach';
nic['Bainbridge Island'][19] = 'Manzanita';
nic['Bainbridge Island'][20] = 'Meadowmeer';
nic['Bainbridge Island'][21] = 'Midden Point';
nic['Bainbridge Island'][22] = 'Murden Cove';
nic['Bainbridge Island'][23] = 'North Hill';
nic['Bainbridge Island'][24] = 'North Town Woods';
nic['Bainbridge Island'][25] = 'Pleasant Beach';
nic['Bainbridge Island'][26] = 'Point White';
nic['Bainbridge Island'][27] = 'Port Blakely';
nic['Bainbridge Island'][28] = 'Port Madison';
nic['Bainbridge Island'][29] = 'Rolling Bay';
nic['Bainbridge Island'][30] = 'Sakai Village';
nic['Bainbridge Island'][31] = 'Seabold';
nic['Bainbridge Island'][32] = 'Seattle';
nic['Bainbridge Island'][33] = 'South Beach';
nic['Bainbridge Island'][34] = 'Stetson Ridge';
nic['Bainbridge Island'][35] = 'Sunrise';
nic['Bainbridge Island'][36] = 'Weaver Creek';
nic['Bainbridge Island'][37] = 'West Blakely';
nic['Bainbridge Island'][38] = 'West Port Madison';
nic['Bainbridge Island'][39] = 'Wing Point';
nic['Bainbridge Island'][40] = 'Winslow';
nic['Bainbridge Island'][41] = 'Woodland Village';
nic['Bainbridge Island'][42] = 'Yeomalt Point';
nic['Baring'] = new Array();
nic['Baring'][0] = 'Baring';
nic['Baring'][1] = 'Chamonix Village';
nic['Baring'][2] = 'Money Creek';
nic['Baring'][3] = 'Riverwood';
nic['Baring'][4] = 'Skyko Park';
nic['Battle Ground'] = new Array();
nic['Battle Ground'][0] = 'Battle Ground';
nic['Battle Ground'][1] = 'Battle Ground Lake';
nic['Battle Ground'][2] = 'Battleground';
nic['Battle Ground'][3] = 'Battleground Lake';
nic['Battle Ground'][4] = 'Brush Prairie';
nic['Battle Ground'][5] = 'Daybreak';
nic['Battle Ground'][6] = 'Dollars Corner';
nic['Battle Ground'][7] = 'E Fork Lewis River';
nic['Battle Ground'][8] = 'Fairgrounds';
nic['Battle Ground'][9] = 'Heisson';
nic['Battle Ground'][10] = 'Hockinson';
nic['Battle Ground'][11] = 'Lewisville Park';
nic['Battle Ground'][12] = 'Maple Grove';
nic['Battle Ground'][13] = 'Meadowglade';
nic['Battle Ground'][14] = 'Vancouver';
nic['Battle Ground'][15] = 'Venersborg';
nic['Bay Center'] = new Array();
nic['Bay Center'][0] = 'Bay Center';
nic['Bay Center'][1] = 'Naselle';
nic['Bay Center'][2] = 'Nemah';
nic['Bay Center'][3] = 'Ocean Park';
nic['Bay Center'][4] = 'South Bend';
nic['Bayview'] = new Array();
nic['Bayview'][0] = 'Bayview';
nic['Beaux Arts'] = new Array();
nic['Beaux Arts'][0] = 'Beaux Arts';
nic['Beaux Arts'][1] = 'Beaux Arts Village';
nic['Beaux Arts'][2] = 'Bellevue';
nic['Beaver'] = new Array();
nic['Beaver'][0] = '710-Other West';
nic['Beaver'][1] = 'Forks';
nic['Beaver'][2] = 'Hoko';
nic['Beaver'][3] = 'Sappho';
nic['Belfair'] = new Array();
nic['Belfair'][0] = 'Allyn';
nic['Belfair'][1] = 'Beards Cove';
nic['Belfair'][2] = 'Belfair';
nic['Belfair'][3] = 'Belfair View Estates';
nic['Belfair'][4] = 'Case Inlet';
nic['Belfair'][5] = 'Collins Lake';
nic['Belfair'][6] = 'Dewatto';
nic['Belfair'][7] = 'Grapeview';
nic['Belfair'][8] = 'Haven Lake';
nic['Belfair'][9] = 'Hood Canal';
nic['Belfair'][10] = 'Key Peninsula North';
nic['Belfair'][11] = 'Lake Devereaux';
nic['Belfair'][12] = 'Lakeland Village';
nic['Belfair'][13] = 'Lynch Cove';
nic['Belfair'][14] = 'Lynch Cove Heights';
nic['Belfair'][15] = 'Mason Lake';
nic['Belfair'][16] = 'Mission Creek';
nic['Belfair'][17] = 'North Shore';
nic['Belfair'][18] = 'Old Belfair Hwy';
nic['Belfair'][19] = 'Panther Lake';
nic['Belfair'][20] = 'Rocky Bay';
nic['Belfair'][21] = 'South Shore';
nic['Belfair'][22] = 'Sunset Ridge';
nic['Belfair'][23] = 'Tahuya';
nic['Belfair'][24] = 'Tahuya River';
nic['Belfair'][25] = 'Tahuya River Valley';
nic['Belfair'][26] = 'Tiger Lake';
nic['Belfair'][27] = 'Toonerville';
nic['Belfair'][28] = 'Trails End';
nic['Belfair'][29] = 'Trails End Lake';
nic['Belfair'][30] = 'Twanoh';
nic['Belfair'][31] = 'Union';
nic['Belfair'][32] = 'Victor';
nic['Belfair'][33] = 'Wooten Lake';
nic['Bellevue'] = new Array();
nic['Bellevue'][0] = 'Ardmore';
nic['Bellevue'][1] = 'Beaux Arts';
nic['Bellevue'][2] = 'Beaux Arts Village';
nic['Bellevue'][3] = 'Bellefield';
nic['Bellevue'][4] = 'Bellevue';
nic['Bellevue'][5] = 'Bretton Wood';
nic['Bellevue'][6] = 'Bridle Trails';
nic['Bellevue'][7] = 'Cherry Crest';
nic['Bellevue'][8] = 'Chevy Chase';
nic['Bellevue'][9] = 'Clyde Hill';
nic['Bellevue'][10] = 'College Hill';
nic['Bellevue'][11] = 'Cougar Mountain';
nic['Bellevue'][12] = 'Crossroads';
nic['Bellevue'][13] = 'Downtown';
nic['Bellevue'][14] = 'Downtown Bellevue';
nic['Bellevue'][15] = 'Eaglesmere';
nic['Bellevue'][16] = 'East Bellevue';
nic['Bellevue'][17] = 'Eastgate';
nic['Bellevue'][18] = 'Eastside';
nic['Bellevue'][19] = 'Enatai';
nic['Bellevue'][20] = 'Evergreen Highway';
nic['Bellevue'][21] = 'Factoria';
nic['Bellevue'][22] = 'Forest Ridge';
nic['Bellevue'][23] = 'Glendale';
nic['Bellevue'][24] = 'Grass Lawn Park';
nic['Bellevue'][25] = 'Greenwich Crest';
nic['Bellevue'][26] = 'Houghton';
nic['Bellevue'][27] = 'Hunts Point';
nic['Bellevue'][28] = 'Idylwood';
nic['Bellevue'][29] = 'Kelsey Creek';
nic['Bellevue'][30] = 'Kirkland';
nic['Bellevue'][31] = 'Lake Hills';
nic['Bellevue'][32] = 'Lake Sammamish';
nic['Bellevue'][33] = 'Lakemont';
nic['Bellevue'][34] = 'Lochmoor';
nic['Bellevue'][35] = 'Medina';
nic['Bellevue'][36] = 'Meydenbauer';
nic['Bellevue'][37] = 'Microsoft';
nic['Bellevue'][38] = 'Midlakes';
nic['Bellevue'][39] = 'Newcastle';
nic['Bellevue'][40] = 'Newport Hills';
nic['Bellevue'][41] = 'Newport Shores';
nic['Bellevue'][42] = 'Overlake';
nic['Bellevue'][43] = 'Phantom Lake';
nic['Bellevue'][44] = 'Robinswood';
nic['Bellevue'][45] = 'Sky Mountain';
nic['Bellevue'][46] = 'Somerset';
nic['Bellevue'][47] = 'South Lake Sammamish';
nic['Bellevue'][48] = 'Spiritridge';
nic['Bellevue'][49] = 'Surrey Downs';
nic['Bellevue'][50] = 'Tam O\'shanter';
nic['Bellevue'][51] = 'The Summit';
nic['Bellevue'][52] = 'Vasa Park';
nic['Bellevue'][53] = 'Vuecrest';
nic['Bellevue'][54] = 'Vuemont';
nic['Bellevue'][55] = 'West Bellevue';
nic['Bellevue'][56] = 'West Lake Sammamish';
nic['Bellevue'][57] = 'Westside';
nic['Bellevue'][58] = 'Whispering Heights';
nic['Bellevue'][59] = 'Wilburton';
nic['Bellevue'][60] = 'Woodridge';
nic['Bellevue'][61] = 'Yarrow';
nic['Bellevue'][62] = 'Yarrow Point';
nic['Bellingham'] = new Array();
nic['Bellingham'][0] = 'Acme';
nic['Bellingham'][1] = 'Alabama Hill';
nic['Bellingham'][2] = 'Alger';
nic['Bellingham'][3] = 'Bakerview';
nic['Bellingham'][4] = 'Barkley';
nic['Bellingham'][5] = 'Bellingham';
nic['Bellingham'][6] = 'Birch Bay';
nic['Bellingham'][7] = 'Birchwood';
nic['Bellingham'][8] = 'Blaine';
nic['Bellingham'][9] = 'Burlington';
nic['Bellingham'][10] = 'Chuckanut';
nic['Bellingham'][11] = 'Columbia';
nic['Bellingham'][12] = 'Cordata';
nic['Bellingham'][13] = 'Cornwall Park';
nic['Bellingham'][14] = 'Custer';
nic['Bellingham'][15] = 'Deming';
nic['Bellingham'][16] = 'Downtown';
nic['Bellingham'][17] = 'Edgemoor';
nic['Bellingham'][18] = 'Emerald Lake';
nic['Bellingham'][19] = 'Everson';
nic['Bellingham'][20] = 'Fairhaven';
nic['Bellingham'][21] = 'Ferndale';
nic['Bellingham'][22] = 'Geneva';
nic['Bellingham'][23] = 'Glacier';
nic['Bellingham'][24] = 'Glenhaven';
nic['Bellingham'][25] = 'Guide Meridian';
nic['Bellingham'][26] = 'Happy Valley';
nic['Bellingham'][27] = 'Lake Samish';
nic['Bellingham'][28] = 'Lettered Streets';
nic['Bellingham'][29] = 'Lummi Island';
nic['Bellingham'][30] = 'Lynden';
nic['Bellingham'][31] = 'Marietta';
nic['Bellingham'][32] = 'Mt Baker';
nic['Bellingham'][33] = 'Nugents Corner';
nic['Bellingham'][34] = 'Puget';
nic['Bellingham'][35] = 'Roosevelt';
nic['Bellingham'][36] = 'Samish';
nic['Bellingham'][37] = 'Samish River';
nic['Bellingham'][38] = 'Sandy Point';
nic['Bellingham'][39] = 'Sehome';
nic['Bellingham'][40] = 'Silver Beach';
nic['Bellingham'][41] = 'South';
nic['Bellingham'][42] = 'South Hill';
nic['Bellingham'][43] = 'Sudden Valley';
nic['Bellingham'][44] = 'Sumas';
nic['Bellingham'][45] = 'Sunnyland';
nic['Bellingham'][46] = 'Whatcom Falls';
nic['Bellingham'][47] = 'York';
nic['Benge'] = new Array();
nic['Benge'][0] = 'Ritzville';
nic['Benton City'] = new Array();
nic['Benton City'][0] = 'Benton';
nic['Beverly'] = new Array();
nic['Beverly'][0] = 'Beverly';
nic['Beverly'][1] = 'Mattawa';
nic['Beverly'][2] = 'Royal City';
nic['Beverly'][3] = 'Schawana';
nic['Bickleton'] = new Array();
nic['Bickleton'][0] = 'Goldendale';
nic['Big Lake'] = new Array();
nic['Big Lake'][0] = 'Big Lake';
nic['Birch Bay'] = new Array();
nic['Birch Bay'][0] = 'Birch Bay';
nic['Birch Bay'][1] = 'Blaine';
nic['Birdsview'] = new Array();
nic['Birdsview'][0] = 'Hamilton';
nic['Black Diamond'] = new Array();
nic['Black Diamond'][0] = 'Black Diamond';
nic['Black Diamond'][1] = 'Covington';
nic['Black Diamond'][2] = 'Diamond';
nic['Black Diamond'][3] = 'East Auburn';
nic['Black Diamond'][4] = 'Enumclaw';
nic['Black Diamond'][5] = 'Green River';
nic['Black Diamond'][6] = 'Green Valley';
nic['Black Diamond'][7] = 'Greenbrier';
nic['Black Diamond'][8] = 'Horseshoe Lake';
nic['Black Diamond'][9] = 'In Town - Black Diamond';
nic['Black Diamond'][10] = 'Kanaskat';
nic['Black Diamond'][11] = 'Lake Sawyer';
nic['Black Diamond'][12] = 'Lake Twelve';
nic['Black Diamond'][13] = 'Lawson Hill';
nic['Black Diamond'][14] = 'Morgan Creek';
nic['Blaine'] = new Array();
nic['Blaine'][0] = 'Bellingham';
nic['Blaine'][1] = 'Birch Bay';
nic['Blaine'][2] = 'Blaine';
nic['Blaine'][3] = 'Custer';
nic['Blaine'][4] = 'Ferndale';
nic['Blaine'][5] = 'Lynden';
nic['Blaine'][6] = 'Semiahmoo';
nic['Blakely Island'] = new Array();
nic['Blakely Island'][0] = 'Blakely Island';
nic['Blanchard'] = new Array();
nic['Blanchard'][0] = 'Bow';
nic['Boistfort'] = new Array();
nic['Boistfort'][0] = 'Adna';
nic['Boistfort'][1] = 'Boistfort';
nic['Boistfort'][2] = 'Curtis';
nic['Boistfort'][3] = 'Pe Ell';
nic['Boistfort'][4] = 'Rural';
nic['Bonney Lake'] = new Array();
nic['Bonney Lake'][0] = 'Auburn';
nic['Bonney Lake'][1] = 'Bonney Lake';
nic['Bonney Lake'][2] = 'Bonney Lake/Buckley';
nic['Bonney Lake'][3] = 'Bridlecreek';
nic['Bonney Lake'][4] = 'Buckley';
nic['Bonney Lake'][5] = 'Cedar Ridge';
nic['Bonney Lake'][6] = 'Cedarview';
nic['Bonney Lake'][7] = 'Church Lake';
nic['Bonney Lake'][8] = 'Creekridge Glen';
nic['Bonney Lake'][9] = 'Debra Jane Lake';
nic['Bonney Lake'][10] = 'Dieringer';
nic['Bonney Lake'][11] = 'Driftwood Point';
nic['Bonney Lake'][12] = 'East Of Lake Tapps';
nic['Bonney Lake'][13] = 'Fennel Ridge';
nic['Bonney Lake'][14] = 'Grandview';
nic['Bonney Lake'][15] = 'Highlands';
nic['Bonney Lake'][16] = 'Inlet Island';
nic['Bonney Lake'][17] = 'Lake Tapps';
nic['Bonney Lake'][18] = 'Lakeland';
nic['Bonney Lake'][19] = 'Lakeridge';
nic['Bonney Lake'][20] = 'Maplebrook';
nic['Bonney Lake'][21] = 'Ne Lake Tapps';
nic['Bonney Lake'][22] = 'Nw Lake Tapps';
nic['Bonney Lake'][23] = 'Ponderosa';
nic['Bonney Lake'][24] = 'Ponderosa Estates';
nic['Bonney Lake'][25] = 'Prairie Ridge';
nic['Bonney Lake'][26] = 'Rhododendron Park';
nic['Bonney Lake'][27] = 'Russellwood';
nic['Bonney Lake'][28] = 'Sky Island';
nic['Bonney Lake'][29] = 'South Bonney Lk';
nic['Bonney Lake'][30] = 'Sumner';
nic['Bonney Lake'][31] = 'Sw Lake Tapps';
nic['Bonney Lake'][32] = 'Tapps Island';
nic['Bonney Lake'][33] = 'Timber Ridge';
nic['Bonney Lake'][34] = 'Wilderness';
nic['Bonney Lake'][35] = 'Willow Brook';
nic['Bothell'] = new Array();
nic['Bothell'][0] = 'Alderwood';
nic['Bothell'][1] = 'Alderwood Manor';
nic['Bothell'][2] = 'Amber Ridge';
nic['Bothell'][3] = 'Bellevue';
nic['Bothell'][4] = 'Bothell';
nic['Bothell'][5] = 'Bridlewood';
nic['Bothell'][6] = 'Brier';
nic['Bothell'][7] = 'Briercrest';
nic['Bothell'][8] = 'Canyon Creek';
nic['Bothell'][9] = 'Canyon Firs';
nic['Bothell'][10] = 'Canyon Park';
nic['Bothell'][11] = 'Canyon Ridge';
nic['Bothell'][12] = 'Cedar';
nic['Bothell'][13] = 'Cherry Hill';
nic['Bothell'][14] = 'Clearview';
nic['Bothell'][15] = 'Creekside Park';
nic['Bothell'][16] = 'Downtown Bothell';
nic['Bothell'][17] = 'Downtown Woodinville';
nic['Bothell'][18] = 'Edmonds';
nic['Bothell'][19] = 'Everett';
nic['Bothell'][20] = 'Finn Hill';
nic['Bothell'][21] = 'Floral Hills';
nic['Bothell'][22] = 'Hilltop';
nic['Bothell'][23] = 'Holly Hills';
nic['Bothell'][24] = 'Hyde Park';
nic['Bothell'][25] = 'Inglewood';
nic['Bothell'][26] = 'Inglewood/Inglemoor';
nic['Bothell'][27] = 'Jordyn Park';
nic['Bothell'][28] = 'Juanita';
nic['Bothell'][29] = 'Kenmore';
nic['Bothell'][30] = 'Kennard Corner';
nic['Bothell'][31] = 'Kingsgate';
nic['Bothell'][32] = 'Kirkland';
nic['Bothell'][33] = 'Lockwood';
nic['Bothell'][34] = 'Logan Park';
nic['Bothell'][35] = 'Lynnwood';
nic['Bothell'][36] = 'Maltby';
nic['Bothell'][37] = 'Martha Lake';
nic['Bothell'][38] = 'Mays Pond';
nic['Bothell'][39] = 'Maywood Hills';
nic['Bothell'][40] = 'Meadowdale';
nic['Bothell'][41] = 'Mill Creek';
nic['Bothell'][42] = 'Moorlands';
nic['Bothell'][43] = 'Morningside';
nic['Bothell'][44] = 'North Bothell';
nic['Bothell'][45] = 'North Creek';
nic['Bothell'][46] = 'North Everett';
nic['Bothell'][47] = 'North Juanita';
nic['Bothell'][48] = 'Northlake';
nic['Bothell'][49] = 'Norway Hill';
nic['Bothell'][50] = 'Queensborough';
nic['Bothell'][51] = 'Queensgate';
nic['Bothell'][52] = 'Redmond';
nic['Bothell'][53] = 'Sammamish River';
nic['Bothell'][54] = 'Seattle Hill';
nic['Bothell'][55] = 'Silver Firs';
nic['Bothell'][56] = 'Silver Lake';
nic['Bothell'][57] = 'Snohomish';
nic['Bothell'][58] = 'Sw Woodinville';
nic['Bothell'][59] = 'Thomas Lake';
nic['Bothell'][60] = 'Thrashers Corner';
nic['Bothell'][61] = 'Timberwood';
nic['Bothell'][62] = 'Totem Lake';
nic['Bothell'][63] = 'Valhalla';
nic['Bothell'][64] = 'Wandering Creek';
nic['Bothell'][65] = 'West Hill';
nic['Bothell'][66] = 'West Woodinville';
nic['Bothell'][67] = 'Woodinville';
nic['Bothell'][68] = 'Woodinville High School';
nic['Bow'] = new Array();
nic['Bow'][0] = 'Alger';
nic['Bow'][1] = 'Allen';
nic['Bow'][2] = 'Anacortes';
nic['Bow'][3] = 'Bayview';
nic['Bow'][4] = 'Bellingham';
nic['Bow'][5] = 'Bow';
nic['Bow'][6] = 'Burlington';
nic['Bow'][7] = 'Edison';
nic['Bow'][8] = 'La Conner';
nic['Bow'][9] = 'Samish Island';
nic['Bow'][10] = 'Samish River';
nic['Bow'][11] = 'Sunset Creek';
nic['Bremerton'] = new Array();
nic['Bremerton'][0] = 'Belfair';
nic['Bremerton'][1] = 'Blueberry Meadows';
nic['Bremerton'][2] = 'Bremerton';
nic['Bremerton'][3] = 'Brownsville';
nic['Bremerton'][4] = 'Camp Union';
nic['Bremerton'][5] = 'Central Kitsap';
nic['Bremerton'][6] = 'Central Valley';
nic['Bremerton'][7] = 'Charleston';
nic['Bremerton'][8] = 'Chico';
nic['Bremerton'][9] = 'Crosby';
nic['Bremerton'][10] = 'East Bremerton';
nic['Bremerton'][11] = 'Enetai';
nic['Bremerton'][12] = 'Erlands Point';
nic['Bremerton'][13] = 'Esquire Hills';
nic['Bremerton'][14] = 'Fairgrounds';
nic['Bremerton'][15] = 'Fairwood Ranch';
nic['Bremerton'][16] = 'Gilberton';
nic['Bremerton'][17] = 'Gorst';
nic['Bremerton'][18] = 'Holly';
nic['Bremerton'][19] = 'Huckle Ridge';
nic['Bremerton'][20] = 'Illahee';
nic['Bremerton'][21] = 'Kariotis';
nic['Bremerton'][22] = 'Kitsap Lake';
nic['Bremerton'][23] = 'Lake Symington';
nic['Bremerton'][24] = 'Lake Tahuyeh';
nic['Bremerton'][25] = 'Madrona Point';
nic['Bremerton'][26] = 'Manette';
nic['Bremerton'][27] = 'Marine Drive';
nic['Bremerton'][28] = 'McCormick';
nic['Bremerton'][29] = 'Meadowdale';
nic['Bremerton'][30] = 'Mission Creek';
nic['Bremerton'][31] = 'Mission Lake';
nic['Bremerton'][32] = 'Mosher Creek';
nic['Bremerton'][33] = 'Navy Yard City';
nic['Bremerton'][34] = 'Newberry Hill';
nic['Bremerton'][35] = 'Old Belfair Hwy';
nic['Bremerton'][36] = 'Oyster Bay';
nic['Bremerton'][37] = 'Panther Lake';
nic['Bremerton'][38] = 'Parkwood East';
nic['Bremerton'][39] = 'Phinney Bay';
nic['Bremerton'][40] = 'Port Orchard';
nic['Bremerton'][41] = 'Ravenswood';
nic['Bremerton'][42] = 'Ridgetop';
nic['Bremerton'][43] = 'Rocky Point';
nic['Bremerton'][44] = 'Seabeck';
nic['Bremerton'][45] = 'Sheridan Park';
nic['Bremerton'][46] = 'Sherman Heights';
nic['Bremerton'][47] = 'Silverdale';
nic['Bremerton'][48] = 'South Kitsap';
nic['Bremerton'][49] = 'Summerwind';
nic['Bremerton'][50] = 'Sunnyslope';
nic['Bremerton'][51] = 'Tracyton';
nic['Bremerton'][52] = 'Trikkala';
nic['Bremerton'][53] = 'University Point';
nic['Bremerton'][54] = 'West Bremerton';
nic['Bremerton'][55] = 'West Hills';
nic['Bremerton'][56] = 'Whisper Ridge';
nic['Bremerton'][57] = 'Wildcat Lake';
nic['Bremerton'][58] = 'Wye Lake';
nic['Brewster'] = new Array();
nic['Brewster'][0] = 'Black Canyon';
nic['Brewster'][1] = 'Brewster';
nic['Brewster'][2] = 'Brewster Flat';
nic['Brewster'][3] = 'Bridgeport';
nic['Brewster'][4] = 'Malott';
nic['Brewster'][5] = 'Monse';
nic['Bridgeport'] = new Array();
nic['Bridgeport'][0] = 'Brewster';
nic['Bridgeport'][1] = 'Brewster Bar';
nic['Bridgeport'][2] = 'Bridgeport';
nic['Brier'] = new Array();
nic['Brier'][0] = 'Alderwood';
nic['Brier'][1] = 'Alderwood Manor';
nic['Brier'][2] = 'Bothell';
nic['Brier'][3] = 'Brier';
nic['Brier'][4] = 'Briercrest';
nic['Brier'][5] = 'Brierwood';
nic['Brier'][6] = 'Castle Crest';
nic['Brier'][7] = 'Crestview Hills';
nic['Brier'][8] = 'Horizon View';
nic['Brier'][9] = 'Kenmore';
nic['Brier'][10] = 'Lake Forest Park';
nic['Brier'][11] = 'Lockwood';
nic['Brier'][12] = 'Shasta Manor';
nic['Brier'][13] = 'Shoreline';
nic['Brinnon'] = new Array();
nic['Brinnon'][0] = 'Brinnon';
nic['Brinnon'][1] = 'Lake Cushman';
nic['Brown Island'] = new Array();
nic['Brown Island'][0] = 'Brown Island';
nic['Brown Island'][1] = 'San Juan Island';
nic['Brown Island'][2] = 'Town';
nic['Brush Prairie'] = new Array();
nic['Brush Prairie'][0] = 'Brush Prairie';
nic['Brush Prairie'][1] = 'Camp Bonneville';
nic['Brush Prairie'][2] = 'Hockinson';
nic['Brush Prairie'][3] = 'Mid Central';
nic['Brush Prairie'][4] = 'Venersborg';
nic['Buckley'] = new Array();
nic['Buckley'][0] = 'Bonney Lake';
nic['Buckley'][1] = 'Bonney Lake/Buckley';
nic['Buckley'][2] = 'Buckley';
nic['Buckley'][3] = 'Buckley Meadows';
nic['Buckley'][4] = 'Burnett';
nic['Buckley'][5] = 'Carbonado';
nic['Buckley'][6] = 'Cascade Trails';
nic['Buckley'][7] = 'Copperwynd';
nic['Buckley'][8] = 'Dieringer';
nic['Buckley'][9] = 'Eaglecrest';
nic['Buckley'][10] = 'East Of Lake Tapps';
nic['Buckley'][11] = 'Enumclaw';
nic['Buckley'][12] = 'Evergreen Pond';
nic['Buckley'][13] = 'Finlandia';
nic['Buckley'][14] = 'Hamilton Estates';
nic['Buckley'][15] = 'Lake Tapps';
nic['Buckley'][16] = 'Lakeland';
nic['Buckley'][17] = 'Ne Lake Tapps';
nic['Buckley'][18] = 'Nw Lake Tapps';
nic['Buckley'][19] = 'Orting';
nic['Buckley'][20] = 'Rainier Glen';
nic['Buckley'][21] = 'South Bonney Lk';
nic['Buckley'][22] = 'South Prairie';
nic['Buckley'][23] = 'Sumner';
nic['Buckley'][24] = 'Town';
nic['Buckley'][25] = 'Wazzu Farm';
nic['Buckley'][26] = 'Wilkeson';
nic['Bucoda'] = new Array();
nic['Bucoda'][0] = 'Bucoda';
nic['Bucoda'][1] = 'Tenino';
nic['Buena'] = new Array();
nic['Buena'][0] = 'Yakima';
nic['Burbank'] = new Array();
nic['Burbank'][0] = 'Walla Walla';
nic['Burien'] = new Array();
nic['Burien'][0] = 'Arbor Heights';
nic['Burien'][1] = 'Blakley Manor';
nic['Burien'][2] = 'Boulevard Park';
nic['Burien'][3] = 'Burien';
nic['Burien'][4] = 'Cedarhurst';
nic['Burien'][5] = 'Chelsea Park';
nic['Burien'][6] = 'Des Moines';
nic['Burien'][7] = 'Downtown Burien';
nic['Burien'][8] = 'Gregory Heights';
nic['Burien'][9] = 'Hazel Valley';
nic['Burien'][10] = 'Highline';
nic['Burien'][11] = 'Lake Burien';
nic['Burien'][12] = 'Manhattan';
nic['Burien'][13] = 'Manhatten';
nic['Burien'][14] = 'Marine View';
nic['Burien'][15] = 'Normandy Park';
nic['Burien'][16] = 'North Burien';
nic['Burien'][17] = 'North Hill';
nic['Burien'][18] = 'North Shorewood';
nic['Burien'][19] = 'Riverton';
nic['Burien'][20] = 'Seahurst';
nic['Burien'][21] = 'Seatac';
nic['Burien'][22] = 'Seattle';
nic['Burien'][23] = 'Shorewood';
nic['Burien'][24] = 'South Park';
nic['Burien'][25] = 'Three Tree Point';
nic['Burien'][26] = 'Top Hat';
nic['Burien'][27] = 'West Seattle';
nic['Burien'][28] = 'White Center';
nic['Burley'] = new Array();
nic['Burley'][0] = 'Burley';
nic['Burley'][1] = 'South Kitsap';
nic['Burley'][2] = 'Wauna';
nic['Burlington'] = new Array();
nic['Burlington'][0] = 'Alger';
nic['Burlington'][1] = 'Allen';
nic['Burlington'][2] = 'Bayview';
nic['Burlington'][3] = 'Bow';
nic['Burlington'][4] = 'Burlington';
nic['Burlington'][5] = 'Burlington Hill';
nic['Burlington'][6] = 'Country Club';
nic['Burlington'][7] = 'In Town';
nic['Burlington'][8] = 'Mount Vernon';
nic['Burlington'][9] = 'Samish River';
nic['Burlington'][10] = 'West View Acres';
nic['Burton'] = new Array();
nic['Burton'][0] = 'Burton';
nic['Burton'][1] = 'Vashon Island';
nic['Camano Island'] = new Array();
nic['Camano Island'][0] = 'Arrowhead';
nic['Camano Island'][1] = 'Bayshore Terrace';
nic['Camano Island'][2] = 'Brentwood';
nic['Camano Island'][3] = 'Buena Vista';
nic['Camano Island'][4] = 'Camaloch';
nic['Camano Island'][5] = 'Camano';
nic['Camano Island'][6] = 'Camano City';
nic['Camano Island'][7] = 'Camano Heights';
nic['Camano Island'][8] = 'Camano Hills';
nic['Camano Island'][9] = 'Camano Island';
nic['Camano Island'][10] = 'Camano Ridge';
nic['Camano Island'][11] = 'Camano Shores';
nic['Camano Island'][12] = 'Camano Sunrise';
nic['Camano Island'][13] = 'Camano Vista';
nic['Camano Island'][14] = 'Cavalero';
nic['Camano Island'][15] = 'Country Club';
nic['Camano Island'][16] = 'Driftwood Heights';
nic['Camano Island'][17] = 'Driftwood Shores';
nic['Camano Island'][18] = 'Elger Bay';
nic['Camano Island'][19] = 'Evergreen Acres';
nic['Camano Island'][20] = 'Finisterre';
nic['Camano Island'][21] = 'Idlewood';
nic['Camano Island'][22] = 'Indian Beach';
nic['Camano Island'][23] = 'Juniper Beach';
nic['Camano Island'][24] = 'Lake Grove';
nic['Camano Island'][25] = 'Lands Hill';
nic['Camano Island'][26] = 'Livingston Bay';
nic['Camano Island'][27] = 'Long Beach';
nic['Camano Island'][28] = 'Lost Lake';
nic['Camano Island'][29] = 'Mabana';
nic['Camano Island'][30] = 'Madrona';
nic['Camano Island'][31] = 'North End';
nic['Camano Island'][32] = 'Northeast';
nic['Camano Island'][33] = 'Northwest';
nic['Camano Island'][34] = 'O-zi-ya';
nic['Camano Island'][35] = 'Onamac';
nic['Camano Island'][36] = 'Porter Estates';
nic['Camano Island'][37] = 'Rocky Point';
nic['Camano Island'][38] = 'Saratoga';
nic['Camano Island'][39] = 'Sierra Vista';
nic['Camano Island'][40] = 'South Camano';
nic['Camano Island'][41] = 'Southeast';
nic['Camano Island'][42] = 'Stanwood';
nic['Camano Island'][43] = 'State Park';
nic['Camano Island'][44] = 'Summerland';
nic['Camano Island'][45] = 'Sunnyshore';
nic['Camano Island'][46] = 'Sunnyshore Acres';
nic['Camano Island'][47] = 'Sunset West';
nic['Camano Island'][48] = 'Thunderidge';
nic['Camano Island'][49] = 'Triangle Cove';
nic['Camano Island'][50] = 'Tyee Beach';
nic['Camano Island'][51] = 'Utsalady';
nic['Camano Island'][52] = 'Westside';
nic['Camano Island'][53] = 'Wilkes Gary Heights';
nic['Camas'] = new Array();
nic['Camas'][0] = 'Camas';
nic['Camas'][1] = 'Camas Meadows';
nic['Camas'][2] = 'Camp Bonneville';
nic['Camas'][3] = 'East County';
nic['Camas'][4] = 'Evergreen Highway';
nic['Camas'][5] = 'Fern Prairie';
nic['Camas'][6] = 'Fishers Landing';
nic['Camas'][7] = 'Grass Valley';
nic['Camas'][8] = 'Lacamas Shores';
nic['Camas'][9] = 'Livingston';
nic['Camas'][10] = 'Orchard Hills';
nic['Camas'][11] = 'Prune Hill';
nic['Camas'][12] = 'Vancouver';
nic['Camas'][13] = 'Washougal';
nic['Carbonado'] = new Array();
nic['Carbonado'][0] = 'Carbonado';
nic['Carbonado'][1] = 'Wilkeson';
nic['Carlsborg'] = new Array();
nic['Carlsborg'][0] = '747-Carlsborg';
nic['Carlsborg'][1] = 'Sequim';
nic['Carlton'] = new Array();
nic['Carlton'][0] = 'Carlton';
nic['Carlton'][1] = 'Methow';
nic['Carlton'][2] = 'Twisp South';
nic['Carlton'][3] = 'West County Rd';
nic['Carlton'][4] = 'Winthrop';
nic['Carnation'] = new Array();
nic['Carnation'][0] = 'Ames Lake';
nic['Carnation'][1] = 'Big Rock';
nic['Carnation'][2] = 'Blakely Woods';
nic['Carnation'][3] = 'Carnation';
nic['Carnation'][4] = 'Carnation Meadows';
nic['Carnation'][5] = 'Country View';
nic['Carnation'][6] = 'Downtown Carnation';
nic['Carnation'][7] = 'Downtown Snoqualmie';
nic['Carnation'][8] = 'Duvall';
nic['Carnation'][9] = 'East Lake Sammamish';
nic['Carnation'][10] = 'Fall City';
nic['Carnation'][11] = 'Garden Tracts';
nic['Carnation'][12] = 'Issaquah/Sammamish';
nic['Carnation'][13] = 'Lake Joy';
nic['Carnation'][14] = 'Lake Marcel';
nic['Carnation'][15] = 'North Fall City';
nic['Carnation'][16] = 'Novelty Hill';
nic['Carnation'][17] = 'Redmond';
nic['Carnation'][18] = 'Regal Glen';
nic['Carnation'][19] = 'Rural Carnation';
nic['Carnation'][20] = 'Sammamish';
nic['Carnation'][21] = 'Snoqualmie Falls';
nic['Carnation'][22] = 'Stillwater';
nic['Carnation'][23] = 'Swiftwater';
nic['Carnation'][24] = 'Tolt';
nic['Carnation'][25] = 'Tolt Pipeline';
nic['Carnation'][26] = 'Trossachs';
nic['Carnation'][27] = 'Union Hill';
nic['Carrolls'] = new Array();
nic['Carrolls'][0] = 'Carrolls';
nic['Carrolls'][1] = 'Kelso';
nic['Carson'] = new Array();
nic['Carson'][0] = 'Skamania';
nic['Cashmere'] = new Array();
nic['Cashmere'][0] = 'Cachmere';
nic['Cashmere'][1] = 'Cashmere';
nic['Cashmere'][2] = 'Chelan';
nic['Castle Rock'] = new Array();
nic['Castle Rock'][0] = 'Castle Rock';
nic['Castle Rock'][1] = 'Headquarters';
nic['Castle Rock'][2] = 'Holcomb Acres';
nic['Castle Rock'][3] = 'Jim Town';
nic['Castle Rock'][4] = 'Kelso';
nic['Castle Rock'][5] = 'Ostrander';
nic['Castle Rock'][6] = 'Pleasant Hill';
nic['Castle Rock'][7] = 'Silverlake';
nic['Castle Rock'][8] = 'Toutle';
nic['Castle Rock'][9] = 'Westside Hwy';
nic['Cathlamet'] = new Array();
nic['Cathlamet'][0] = 'Cathlamet';
nic['Cathlamet'][1] = 'Elochoman';
nic['Cathlamet'][2] = 'Puget Island';
nic['Center Island'] = new Array();
nic['Center Island'][0] = 'Center Island';
nic['Centerville'] = new Array();
nic['Centerville'][0] = 'Goldendale';
nic['Centerville'][1] = 'Lyle';
nic['Centralia'] = new Array();
nic['Centralia'][0] = 'Big Hanaford';
nic['Centralia'][1] = 'Borst Meadows';
nic['Centralia'][2] = 'Bucoda';
nic['Centralia'][3] = 'Centralia';
nic['Centralia'][4] = 'Chehalis';
nic['Centralia'][5] = 'Cooks Hill';
nic['Centralia'][6] = 'Davis Hill';
nic['Centralia'][7] = 'East Centrailia';
nic['Centralia'][8] = 'Edison';
nic['Centralia'][9] = 'Fords Prairie';
nic['Centralia'][10] = 'Grand Mound';
nic['Centralia'][11] = 'Highland Park';
nic['Centralia'][12] = 'Logan District';
nic['Centralia'][13] = 'Maytown';
nic['Centralia'][14] = 'Olympia';
nic['Centralia'][15] = 'River Heights';
nic['Centralia'][16] = 'Rochester';
nic['Centralia'][17] = 'Rural';
nic['Centralia'][18] = 'Seminary Hill';
nic['Centralia'][19] = 'Tenino';
nic['Centralia'][20] = 'Tri Mountain';
nic['Centralia'][21] = 'Waunches Prairie';
nic['Centralia'][22] = 'Winterwood';
nic['Chattaroy'] = new Array();
nic['Chattaroy'][0] = 'Green Bluff';
nic['Chehalis'] = new Array();
nic['Chehalis'][0] = 'Adna';
nic['Chehalis'][1] = 'Alpha';
nic['Chehalis'][2] = 'Boistfort';
nic['Chehalis'][3] = 'Bunker';
nic['Chehalis'][4] = 'Centralia';
nic['Chehalis'][5] = 'Chehalis';
nic['Chehalis'][6] = 'Claquato';
nic['Chehalis'][7] = 'Curtis';
nic['Chehalis'][8] = 'Doty';
nic['Chehalis'][9] = 'East Centrailia';
nic['Chehalis'][10] = 'Ethel';
nic['Chehalis'][11] = 'Evaline';
nic['Chehalis'][12] = 'Forest';
nic['Chehalis'][13] = 'Jackson';
nic['Chehalis'][14] = 'Logan District';
nic['Chehalis'][15] = 'Mary\'s Corner';
nic['Chehalis'][16] = 'Mossyrock';
nic['Chehalis'][17] = 'Napavine';
nic['Chehalis'][18] = 'Newaukum';
nic['Chehalis'][19] = 'Onalaska';
nic['Chehalis'][20] = 'Pe Ell';
nic['Chehalis'][21] = 'Rural';
nic['Chehalis'][22] = 'Snively';
nic['Chehalis'][23] = 'Valley View';
nic['Chehalis'][24] = 'Winlock';
nic['Chelan'] = new Array();
nic['Chelan'][0] = 'Chelan';
nic['Chelan'][1] = 'Chelan Falls';
nic['Chelan'][2] = 'Lakeside';
nic['Chelan'][3] = 'Manson';
nic['Chelan Falls'] = new Array();
nic['Chelan Falls'][0] = 'Chelan';
nic['Chelan Falls'][1] = 'Chelan Falls';
nic['Cheney'] = new Array();
nic['Cheney'][0] = 'Cheney';
nic['Chewelah'] = new Array();
nic['Chewelah'][0] = 'Chewelah';
nic['Chimacum'] = new Array();
nic['Chimacum'][0] = 'Anderson Lake';
nic['Chimacum'][1] = 'Beaver Valley';
nic['Chimacum'][2] = 'Center';
nic['Chimacum'][3] = 'Chimacum';
nic['Chimacum'][4] = 'Eaglemount';
nic['Chimacum'][5] = 'Egg and I';
nic['Chimacum'][6] = 'Fairmount';
nic['Chimacum'][7] = 'Larson Lake';
nic['Chimacum'][8] = 'Port Hadlock';
nic['Chimacum'][9] = 'Rhody Drive';
nic['Chimacum'][10] = 'Uncas';
nic['Chimacum'][11] = 'West Valley';
nic['Chinook'] = new Array();
nic['Chinook'][0] = 'Chinook';
nic['Cinebar'] = new Array();
nic['Cinebar'][0] = 'Cinebar';
nic['Cinebar'][1] = 'Mayfield Lake';
nic['Clallam Bay'] = new Array();
nic['Clallam Bay'][0] = '710-Other West';
nic['Clallam Bay'][1] = 'Forks';
nic['Clallam Bay'][2] = 'Hoko';
nic['Clallam Bay'][3] = 'Pysht';
nic['Clallam Bay'][4] = 'Upper Hoh';
nic['Clarkston'] = new Array();
nic['Clarkston'][0] = 'Clarkston';
nic['Cle Elum'] = new Array();
nic['Cle Elum'][0] = 'Airport Road';
nic['Cle Elum'][1] = 'Bull Frog';
nic['Cle Elum'][2] = 'Cle Elem Pines';
nic['Cle Elum'][3] = 'Cle Elum';
nic['Cle Elum'][4] = 'Deer Valley';
nic['Cle Elum'][5] = 'Easton';
nic['Cle Elum'][6] = 'Elk Heights';
nic['Cle Elum'][7] = 'Elk Meadows';
nic['Cle Elum'][8] = 'Elk Meadows Park';
nic['Cle Elum'][9] = 'Goat Peak';
nic['Cle Elum'][10] = 'Granite Creek';
nic['Cle Elum'][11] = 'Hidden Valley';
nic['Cle Elum'][12] = 'Kittitas';
nic['Cle Elum'][13] = 'Lake Cle Elum';
nic['Cle Elum'][14] = 'Lanigan Springs';
nic['Cle Elum'][15] = 'Liberty';
nic['Cle Elum'][16] = 'Lookout Mountain';
nic['Cle Elum'][17] = 'Mountain Star';
nic['Cle Elum'][18] = 'Nelson Siding';
nic['Cle Elum'][19] = 'Peoh Point';
nic['Cle Elum'][20] = 'Pine Glen';
nic['Cle Elum'][21] = 'Pine Valley Ranch';
nic['Cle Elum'][22] = 'Sky Meadows';
nic['Cle Elum'][23] = 'South Cle Elum';
nic['Cle Elum'][24] = 'Sun Country';
nic['Cle Elum'][25] = 'Suncadia';
nic['Cle Elum'][26] = 'Sunlight Waters';
nic['Cle Elum'][27] = 'Swauk';
nic['Cle Elum'][28] = 'Teanaway';
nic['Cle Elum'][29] = 'Thorp';
nic['Cle Elum'][30] = 'Tillman Creek';
nic['Cle Elum'][31] = 'Timber Mountain';
nic['Cle Elum'][32] = 'Westside Heights';
nic['Cle Elum'][33] = 'Westside Road';
nic['Clear Lake'] = new Array();
nic['Clear Lake'][0] = 'Clear Lake';
nic['Clearview'] = new Array();
nic['Clearview'][0] = 'Clearview';
nic['Clinton'] = new Array();
nic['Clinton'][0] = 'Bayview';
nic['Clinton'][1] = 'Brighton Beach';
nic['Clinton'][2] = 'Clinton';
nic['Clinton'][3] = 'Clinton Heights';
nic['Clinton'][4] = 'Columbia Beach';
nic['Clinton'][5] = 'Cultus Bay';
nic['Clinton'][6] = 'Deer Lake';
nic['Clinton'][7] = 'Freeland';
nic['Clinton'][8] = 'Glendale';
nic['Clinton'][9] = 'Hilltop Terrace';
nic['Clinton'][10] = 'Langley';
nic['Clinton'][11] = 'Maxwelton';
nic['Clinton'][12] = 'Midvale';
nic['Clinton'][13] = 'Possession';
nic['Clinton'][14] = 'Possession Point';
nic['Clinton'][15] = 'Sandy Hook';
nic['Clinton'][16] = 'Scatchet Head';
nic['Clinton'][17] = 'Sunlight Shores';
nic['Clinton'][18] = 'Useless Bay';
nic['Clyde Hill'] = new Array();
nic['Clyde Hill'][0] = 'Clyde Hill';
nic['Clyde Hill'][1] = 'Yarrow Point';
nic['Colbert'] = new Array();
nic['Colbert'][0] = 'Spokane';
nic['Colfax'] = new Array();
nic['Colfax'][0] = 'Pullman';
nic['College Place'] = new Array();
nic['College Place'][0] = 'College Place';
nic['College Place'][1] = 'Walla Walla';
nic['Colville'] = new Array();
nic['Colville'][0] = 'Arden';
nic['Colville'][1] = 'Colville';
nic['Conconully'] = new Array();
nic['Conconully'][0] = 'Conconully';
nic['Conconully'][1] = 'Limebelt';
nic['Concrete'] = new Array();
nic['Concrete'][0] = 'Birdsview';
nic['Concrete'][1] = 'Cape Horn';
nic['Concrete'][2] = 'Cedar Grove';
nic['Concrete'][3] = 'Concrete';
nic['Concrete'][4] = 'Hamilton';
nic['Concrete'][5] = 'Lake Tyee';
nic['Concrete'][6] = 'Rockport';
nic['Concrete'][7] = 'Sauk';
nic['Concrete'][8] = 'Sedro Woolley';
nic['Concrete'][9] = 'Wilderness Village';
nic['Connell'] = new Array();
nic['Connell'][0] = 'Connell';
nic['Conway'] = new Array();
nic['Conway'][0] = 'Conway';
nic['Conway'][1] = 'Stanwood-bryant';
nic['Copalis Beach'] = new Array();
nic['Copalis Beach'][0] = 'Copalis Beach';
nic['Copalis Beach'][1] = 'Copalis Crossing';
nic['Copalis Beach'][2] = 'Northwest';
nic['Copalis Beach'][3] = 'Ocean Shores';
nic['Copalis Crossing'] = new Array();
nic['Copalis Crossing'][0] = 'Carlisle';
nic['Copalis Crossing'][1] = 'Copalis Crossing';
nic['Cosmopolis'] = new Array();
nic['Cosmopolis'][0] = 'Central Cosy';
nic['Cosmopolis'][1] = 'Cosmopolis';
nic['Cosmopolis'][2] = 'Cosy Hill';
nic['Cougar'] = new Array();
nic['Cougar'][0] = 'Woodland';
nic['Coulee City'] = new Array();
nic['Coulee City'][0] = 'Coulee City';
nic['Coulee City'][1] = 'Coulee Dam';
nic['Coulee City'][2] = 'Grand Coulee';
nic['Coulee Dam'] = new Array();
nic['Coulee Dam'][0] = 'Coulee Dam';
nic['Coupeville'] = new Array();
nic['Coupeville'][0] = 'Admirals Cove';
nic['Coupeville'][1] = 'Bon Air';
nic['Coupeville'][2] = 'Central Whidbey';
nic['Coupeville'][3] = 'Coupeville';
nic['Coupeville'][4] = 'Crockett Lake';
nic['Coupeville'][5] = 'Greenbank';
nic['Coupeville'][6] = 'Harrington Lagoon';
nic['Coupeville'][7] = 'Hill Valley';
nic['Coupeville'][8] = 'Ledgewood Beach';
nic['Coupeville'][9] = 'Long Point';
nic['Coupeville'][10] = 'North Whidbey';
nic['Coupeville'][11] = 'Oak Harbor';
nic['Coupeville'][12] = 'Peacefull Valley';
nic['Coupeville'][13] = 'Penn Cove';
nic['Coupeville'][14] = 'Race Lagoon';
nic['Coupeville'][15] = 'Rhodena Beach';
nic['Coupeville'][16] = 'San de Fuca';
nic['Coupeville'][17] = 'Sierra';
nic['Coupeville'][18] = 'Sky Meadows';
nic['Coupeville'][19] = 'Snakelum Point';
nic['Coupeville'][20] = 'Teronda';
nic['Coupeville'][21] = 'West Beach';
nic['Covington'] = new Array();
nic['Covington'][0] = 'Covington';
nic['Covington'][1] = 'East Hill';
nic['Covington'][2] = 'Emerald Downs';
nic['Covington'][3] = 'Kent';
nic['Covington'][4] = 'Lake Meridian';
nic['Covington'][5] = 'Lake Morton';
nic['Covington'][6] = 'Lake Sawyer';
nic['Covington'][7] = 'Lake Youngs';
nic['Covington'][8] = 'Maple Valley';
nic['Covington'][9] = 'Meridian Valley CC';
nic['Covington'][10] = 'Morgan Creek';
nic['Covington'][11] = 'Pipe Lake';
nic['Covington'][12] = 'Pipe Lake/Lake Lucerne';
nic['Covington'][13] = 'Remington';
nic['Covington'][14] = 'Soos Creek';
nic['Covington'][15] = 'Timberlane';
nic['Covington'][16] = 'Winterwood';
nic['Cowiche'] = new Array();
nic['Cowiche'][0] = 'Cowiche';
nic['Cowiche'][1] = 'Yakima';
nic['Crane Island'] = new Array();
nic['Crane Island'][0] = 'Deer Harbor';
nic['Crane Island'][1] = 'Other Islands';
nic['Creston'] = new Array();
nic['Creston'][0] = 'Creston';
nic['Curlew'] = new Array();
nic['Curlew'][0] = 'Curlew';
nic['Curlew'][1] = 'Republic';
nic['Curtis'] = new Array();
nic['Curtis'][0] = 'Adna';
nic['Curtis'][1] = 'Curtis';
nic['Curtis'][2] = 'Vader';
nic['Curtis'][3] = 'Wildwood';
nic['Cusick'] = new Array();
nic['Cusick'][0] = 'Cusick';
nic['Cusick'][1] = 'Ione';
nic['Custer'] = new Array();
nic['Custer'][0] = 'Birch Bay';
nic['Custer'][1] = 'Blaine';
nic['Custer'][2] = 'Custer';
nic['Custer'][3] = 'Ferndale';
nic['Danville'] = new Array();
nic['Danville'][0] = 'Danville';
nic['Danville'][1] = 'Republic';
nic['Darrington'] = new Array();
nic['Darrington'][0] = 'Clear Creek';
nic['Darrington'][1] = 'Concrete';
nic['Darrington'][2] = 'Darrington';
nic['Darrington'][3] = 'Downtown';
nic['Darrington'][4] = 'Mount Vernon';
nic['Darrington'][5] = 'Mt Loop Hwy';
nic['Darrington'][6] = 'Oso';
nic['Darrington'][7] = 'Sauk';
nic['Darrington'][8] = 'Sauk Prairie';
nic['Darrington'][9] = 'Snohomish';
nic['Darrington'][10] = 'Town - Darrington';
nic['Davenport'] = new Array();
nic['Davenport'][0] = 'Davenport';
nic['Davenport'][1] = 'Deer Meadows';
nic['Davenport'][2] = 'Harrington';
nic['Davenport'][3] = 'Seven Bays';
nic['Dayton'] = new Array();
nic['Dayton'][0] = 'Dayton';
nic['Decatur Island'] = new Array();
nic['Decatur Island'][0] = 'Decatur Island';
nic['Deep River'] = new Array();
nic['Deep River'][0] = 'Cathlamet';
nic['Deep River'][1] = 'Deep River';
nic['Deep River'][2] = 'Naselle';
nic['Deer Park'] = new Array();
nic['Deer Park'][0] = 'Deer Park';
nic['Deer Park'][1] = 'Spokane';
nic['Deming'] = new Array();
nic['Deming'][0] = 'Acme';
nic['Deming'][1] = 'Deming';
nic['Deming'][2] = 'Glacier';
nic['Deming'][3] = 'Kendall';
nic['Deming'][4] = 'Mt Baker';
nic['Deming'][5] = 'Nugents Corner';
nic['Deming'][6] = 'Sumas';
nic['Deming'][7] = 'Welcome';
nic['Des Moines'] = new Array();
nic['Des Moines'][0] = 'Delrose Manor';
nic['Des Moines'][1] = 'Des Moines';
nic['Des Moines'][2] = 'Des Moines Waterfront';
nic['Des Moines'][3] = 'Downtown Des Moines';
nic['Des Moines'][4] = 'Federal Way';
nic['Des Moines'][5] = 'Forest Meadows';
nic['Des Moines'][6] = 'Highline';
nic['Des Moines'][7] = 'Huntington Park';
nic['Des Moines'][8] = 'Kent';
nic['Des Moines'][9] = 'Manhattan';
nic['Des Moines'][10] = 'Manhatten';
nic['Des Moines'][11] = 'Normandy Park';
nic['Des Moines'][12] = 'North Hill';
nic['Des Moines'][13] = 'Pinebrook';
nic['Des Moines'][14] = 'Redondo';
nic['Des Moines'][15] = 'Saltwater Highlands';
nic['Des Moines'][16] = 'Saltwater Park';
nic['Des Moines'][17] = 'Seatac';
nic['Des Moines'][18] = 'Seattle';
nic['Des Moines'][19] = 'South Shore Hills';
nic['Des Moines'][20] = 'Star Lake';
nic['Des Moines'][21] = 'Westwood';
nic['Des Moines'][22] = 'Woodmont';
nic['Des Moines'][23] = 'Zenith';
nic['Doty'] = new Array();
nic['Doty'][0] = 'Doty';
nic['Dryad'] = new Array();
nic['Dryad'][0] = 'Pe Ell';
nic['Dryden'] = new Array();
nic['Dryden'][0] = 'Cashmere';
nic['Dryden'][1] = 'Peshastin';
nic['Dupont'] = new Array();
nic['Dupont'][0] = 'Dupont';
nic['Dupont'][1] = 'Nw Landing';
nic['Duvall'] = new Array();
nic['Duvall'][0] = 'Avondale';
nic['Duvall'][1] = 'Big Rock';
nic['Duvall'][2] = 'Canterbury Woods';
nic['Duvall'][3] = 'Carnation';
nic['Duvall'][4] = 'Cedar';
nic['Duvall'][5] = 'Cherry Hill';
nic['Duvall'][6] = 'Cherry Valley';
nic['Duvall'][7] = 'Country View';
nic['Duvall'][8] = 'Duvall';
nic['Duvall'][9] = 'Duvall Hills';
nic['Duvall'][10] = 'Duvall Intown';
nic['Duvall'][11] = 'In Town - Duval';
nic['Duvall'][12] = 'Juniper Glen';
nic['Duvall'][13] = 'Lake Kayak';
nic['Duvall'][14] = 'Lake Marcel';
nic['Duvall'][15] = 'Lake Margaret';
nic['Duvall'][16] = 'Microsoft';
nic['Duvall'][17] = 'Novelty Hill';
nic['Duvall'][18] = 'Old Novelty';
nic['Duvall'][19] = 'Redmond';
nic['Duvall'][20] = 'South Monroe';
nic['Duvall'][21] = 'Stillwater';
nic['Duvall'][22] = 'Stossel Creek';
nic['Duvall'][23] = 'The Ridge';
nic['Duvall'][24] = 'Tolt';
nic['Duvall'][25] = 'Tolt Pipeline';
nic['Duvall'][26] = 'Woodinville';
nic['East Olympia'] = new Array();
nic['East Olympia'][0] = 'East Olympia';
nic['East Wenatchee'] = new Array();
nic['East Wenatchee'][0] = 'East Wenatchee';
nic['East Wenatchee'][1] = 'Orondo';
nic['East Wenatchee'][2] = 'Waterville';
nic['East Wenatchee'][3] = 'Wenatchee';
nic['Eastern Washington'] = new Array();
nic['Eastern Washington'][0] = 'Chelan';
nic['Easton'] = new Array();
nic['Easton'][0] = 'Easton';
nic['Easton'][1] = 'Easton Village';
nic['Easton'][2] = 'Kachess';
nic['Easton'][3] = 'Nelson Siding';
nic['Easton'][4] = 'Pine Glen';
nic['Easton'][5] = 'Snoqualmie Pass';
nic['Eatonville'] = new Array();
nic['Eatonville'][0] = 'Alder Lake';
nic['Eatonville'][1] = 'Ashford';
nic['Eatonville'][2] = 'Clear Lake';
nic['Eatonville'][3] = 'Eatonville';
nic['Eatonville'][4] = 'Graham';
nic['Eatonville'][5] = 'Harts Lake';
nic['Eatonville'][6] = 'Holiday Hills';
nic['Eatonville'][7] = 'Kapowsin';
nic['Eatonville'][8] = 'Kreger Lake';
nic['Eatonville'][9] = 'Lake Tanwax';
nic['Eatonville'][10] = 'McKenna';
nic['Eatonville'][11] = 'Ohop Lake';
nic['Eatonville'][12] = 'Puyallup';
nic['Eatonville'][13] = 'Rural';
nic['Eatonville'][14] = 'Silver Lake';
nic['Edgewood'] = new Array();
nic['Edgewood'][0] = 'Edgewood';
nic['Edgewood'][1] = 'Enchanted Village';
nic['Edgewood'][2] = 'Jovita';
nic['Edgewood'][3] = 'Milton';
nic['Edgewood'][4] = 'North Puyallup';
nic['Edgewood'][5] = 'Puyallup';
nic['Edgewood'][6] = 'Puyallup Valley';
nic['Edison'] = new Array();
nic['Edison'][0] = 'Edison';
nic['Edmonds'] = new Array();
nic['Edmonds'][0] = '5 Corners';
nic['Edmonds'][1] = 'Alderwood';
nic['Edmonds'][2] = 'Alderwood Manor';
nic['Edmonds'][3] = 'Aurora Village';
nic['Edmonds'][4] = 'Ballinger North';
nic['Edmonds'][5] = 'Beverly Park';
nic['Edmonds'][6] = 'Chase Lake';
nic['Edmonds'][7] = 'Cherry Hill';
nic['Edmonds'][8] = 'Downtown Edmonds';
nic['Edmonds'][9] = 'Edmonds';
nic['Edmonds'][10] = 'Edmonds Bowl';
nic['Edmonds'][11] = 'Edmonds Comm College';
nic['Edmonds'][12] = 'Esperance';
nic['Edmonds'][13] = 'Everett';
nic['Edmonds'][14] = 'Firdale';
nic['Edmonds'][15] = 'Hazelwood';
nic['Edmonds'][16] = 'Keeler\'s Corner';
nic['Edmonds'][17] = 'Lake Ballinger';
nic['Edmonds'][18] = 'Lake Serene';
nic['Edmonds'][19] = 'Lynnwood';
nic['Edmonds'][20] = 'Maplewood';
nic['Edmonds'][21] = 'Meadowdale';
nic['Edmonds'][22] = 'Mill Creek';
nic['Edmonds'][23] = 'Mountlake Terrace';
nic['Edmonds'][24] = 'Mukilteo';
nic['Edmonds'][25] = 'Norma Beach';
nic['Edmonds'][26] = 'Perrinville';
nic['Edmonds'][27] = 'Picnic Point';
nic['Edmonds'][28] = 'Richmond Beach';
nic['Edmonds'][29] = 'Richmond Highlands';
nic['Edmonds'][30] = 'Seattle Heights';
nic['Edmonds'][31] = 'Seaview';
nic['Edmonds'][32] = 'Shoreline';
nic['Edmonds'][33] = 'Snohomish';
nic['Edmonds'][34] = 'Soundview';
nic['Edmonds'][35] = 'Talbot Park';
nic['Edmonds'][36] = 'Upper Edmonds';
nic['Edmonds'][37] = 'Westgate';
nic['Edmonds'][38] = 'Westminster';
nic['Edmonds'][39] = 'Wingate';
nic['Edmonds'][40] = 'Woodway';
nic['Edmonds'][41] = 'Yost Park';
nic['Edwall'] = new Array();
nic['Edwall'][0] = 'Reardan';
nic['Elbe'] = new Array();
nic['Elbe'][0] = 'Alder Lake';
nic['Elbe'][1] = 'Eatonville';
nic['Elbe'][2] = 'Elbe';
nic['Electric City'] = new Array();
nic['Electric City'][0] = 'Electric City';
nic['Electric City'][1] = 'Okanogan';
nic['Elk'] = new Array();
nic['Elk'][0] = 'Spokane';
nic['Ellensburg'] = new Array();
nic['Ellensburg'][0] = '18th/Ellensburg';
nic['Ellensburg'][1] = 'Airport';
nic['Ellensburg'][2] = 'Badger Pocket';
nic['Ellensburg'][3] = 'Brooklane';
nic['Ellensburg'][4] = 'Canyon Road';
nic['Ellensburg'][5] = 'Central Ellensburg';
nic['Ellensburg'][6] = 'Craig Hill';
nic['Ellensburg'][7] = 'Deer Valley';
nic['Ellensburg'][8] = 'Ellensburg Ranches';
nic['Ellensburg'][9] = 'Fairview';
nic['Ellensburg'][10] = 'Grasslands';
nic['Ellensburg'][11] = 'Green Canyon';
nic['Ellensburg'][12] = 'Kittitas';
nic['Ellensburg'][13] = 'Liberty';
nic['Ellensburg'][14] = 'Manastash';
nic['Ellensburg'][15] = 'Mountain View';
nic['Ellensburg'][16] = 'North Water';
nic['Ellensburg'][17] = 'Parke Creek';
nic['Ellensburg'][18] = 'Radio Hill';
nic['Ellensburg'][19] = 'Reecer Creek';
nic['Ellensburg'][20] = 'Rural - East';
nic['Ellensburg'][21] = 'Rural - North';
nic['Ellensburg'][22] = 'Rural - South';
nic['Ellensburg'][23] = 'Rural - West';
nic['Ellensburg'][24] = 'Sun East';
nic['Ellensburg'][25] = 'Swauk';
nic['Ellensburg'][26] = 'Teanaway';
nic['Ellensburg'][27] = 'Thorp';
nic['Ellensburg'][28] = 'Thrall';
nic['Ellensburg'][29] = 'University District';
nic['Ellensburg'][30] = 'Vantage';
nic['Ellensburg'][31] = 'West Fifth';
nic['Ellensburg'][32] = 'Westside';
nic['Ellensburg'][33] = 'Wilson Creek';
nic['Elma'] = new Array();
nic['Elma'][0] = 'Cloquallum';
nic['Elma'][1] = 'Deckerville';
nic['Elma'][2] = 'Elma';
nic['Elma'][3] = 'Elma Heights';
nic['Elma'][4] = 'Elma Rural';
nic['Elma'][5] = 'Garden Hill';
nic['Elma'][6] = 'Lost Lake';
nic['Elma'][7] = 'Malone';
nic['Elma'][8] = 'Matlock';
nic['Elma'][9] = 'McCleary';
nic['Elma'][10] = 'Montesano';
nic['Elma'][11] = 'Ripplewood';
nic['Elma'][12] = 'River Haven';
nic['Elma'][13] = 'Saginaw';
nic['Elma'][14] = 'Satsop';
nic['Elma'][15] = 'Shelton';
nic['Elma'][16] = 'South Bank Estates';
nic['Elma'][17] = 'South Elma';
nic['Elma'][18] = 'Stamper Hill';
nic['Elma'][19] = 'Star Lake';
nic['Elma'][20] = 'Strawberry Hill';
nic['Elmer City'] = new Array();
nic['Elmer City'][0] = 'Coulee Dam';
nic['Elmer City'][1] = 'Peter Dan Creek';
nic['Eltopia'] = new Array();
nic['Eltopia'][0] = 'Basin City';
nic['Entiat'] = new Array();
nic['Entiat'][0] = 'Entiat';
nic['Entiat'][1] = 'Saska Hills';
nic['Enumclaw'] = new Array();
nic['Enumclaw'][0] = 'Auburn';
nic['Enumclaw'][1] = 'Bass Lake';
nic['Enumclaw'][2] = 'Black Diamond';
nic['Enumclaw'][3] = 'Central In Town';
nic['Enumclaw'][4] = 'Cumberland';
nic['Enumclaw'][5] = 'Enumclaw';
nic['Enumclaw'][6] = 'Fairgrounds';
nic['Enumclaw'][7] = 'Fairway Hills';
nic['Enumclaw'][8] = 'Flaming Geyser';
nic['Enumclaw'][9] = 'Flensted';
nic['Enumclaw'][10] = 'Glacier Vista';
nic['Enumclaw'][11] = 'Green River';
nic['Enumclaw'][12] = 'Greenwater';
nic['Enumclaw'][13] = 'High School';
nic['Enumclaw'][14] = 'Kent';
nic['Enumclaw'][15] = 'Krain';
nic['Enumclaw'][16] = 'Lake Walker';
nic['Enumclaw'][17] = 'Maple Valley';
nic['Enumclaw'][18] = 'Mt Peak';
nic['Enumclaw'][19] = 'Ne In Town';
nic['Enumclaw'][20] = 'New Horizons';
nic['Enumclaw'][21] = 'North EnumcLaw';
nic['Enumclaw'][22] = 'Nw In Town';
nic['Enumclaw'][23] = 'Osceola';
nic['Enumclaw'][24] = 'Pinnacle';
nic['Enumclaw'][25] = 'Rainier';
nic['Enumclaw'][26] = 'Rural';
nic['Enumclaw'][27] = 'Sales Barn';
nic['Enumclaw'][28] = 'Se In Town';
nic['Enumclaw'][29] = 'Sw In Town';
nic['Enumclaw'][30] = 'The Meadows';
nic['Enumclaw'][31] = 'Veazie';
nic['Enumclaw'][32] = 'Wabash';
nic['Enumclaw'][33] = 'West In Town';
nic['Enumclaw'][34] = 'Westwood';
nic['Ephrata'] = new Array();
nic['Ephrata'][0] = 'Cherf Addition';
nic['Ephrata'][1] = 'Douglas';
nic['Ephrata'][2] = 'Ephrata';
nic['Ephrata'][3] = 'Ephrata Heights';
nic['Ephrata'][4] = 'Farmer';
nic['Ephrata'][5] = 'Frenchman Hill';
nic['Ephrata'][6] = 'Grandview Heights';
nic['Ephrata'][7] = 'Grant Orchards';
nic['Ephrata'][8] = 'Lakeview Country Club';
nic['Ephrata'][9] = 'Moses Lake';
nic['Ephrata'][10] = 'Port of Ephrata';
nic['Ephrata'][11] = 'Rimrock';
nic['Ephrata'][12] = 'Rimrock Meadows';
nic['Ephrata'][13] = 'Soap Lake';
nic['Ephrata'][14] = 'Tumbleweed Terrace';
nic['Ephrata'][15] = 'Wilson Creek';
nic['Ethel'] = new Array();
nic['Ethel'][0] = 'Ethel';
nic['Ethel'][1] = 'Mary\'s Corner';
nic['Ethel'][2] = 'Morton';
nic['Ethel'][3] = 'Mossyrock';
nic['Ethel'][4] = 'Rural';
nic['Ethel'][5] = 'Toledo';
nic['Evans'] = new Array();
nic['Evans'][0] = 'Colville';
nic['Evans'][1] = 'Kettle Falls';
nic['Evans'][2] = 'Marcus';
nic['Everett'] = new Array();
nic['Everett'][0] = '6 Corners';
nic['Everett'][1] = 'Alderwood';
nic['Everett'][2] = 'Alderwood Manor';
nic['Everett'][3] = 'Arlington';
nic['Everett'][4] = 'Beverly Park';
nic['Everett'][5] = 'Blackmans Lake';
nic['Everett'][6] = 'Bothell';
nic['Everett'][7] = 'Bunk Foss';
nic['Everett'][8] = 'Calavero';
nic['Everett'][9] = 'Cascade Heights';
nic['Everett'][10] = 'Casino';
nic['Everett'][11] = 'Cathcart';
nic['Everett'][12] = 'Cavalero';
nic['Everett'][13] = 'Central';
nic['Everett'][14] = 'Claremont';
nic['Everett'][15] = 'Country Club';
nic['Everett'][16] = 'Downtown';
nic['Everett'][17] = 'Downtown Lk Stevens';
nic['Everett'][18] = 'East Everett';
nic['Everett'][19] = 'East Lake Stevens';
nic['Everett'][20] = 'East Marysville';
nic['Everett'][21] = 'Eastmont';
nic['Everett'][22] = 'Ebey Island';
nic['Everett'][23] = 'Edgewater';
nic['Everett'][24] = 'Edmonds';
nic['Everett'][25] = 'Emerald Forest';
nic['Everett'][26] = 'Everett';
nic['Everett'][27] = 'Everett Mall';
nic['Everett'][28] = 'Evergreen';
nic['Everett'][29] = 'Fairway';
nic['Everett'][30] = 'Fobes Hill';
nic['Everett'][31] = 'Forest Park';
nic['Everett'][32] = 'Frontier Air Park';
nic['Everett'][33] = 'Hannabrook';
nic['Everett'][34] = 'Harbor View';
nic['Everett'][35] = 'Highlands';
nic['Everett'][36] = 'Hillcrest';
nic['Everett'][37] = 'Hilton Lake';
nic['Everett'][38] = 'Historic N Everett';
nic['Everett'][39] = 'In Town';
nic['Everett'][40] = 'Intercity';
nic['Everett'][41] = 'John Sam Lake';
nic['Everett'][42] = 'Keeler\'s Corner';
nic['Everett'][43] = 'Lake Cassidy';
nic['Everett'][44] = 'Lake Serene';
nic['Everett'][45] = 'Lake Stevens';
nic['Everett'][46] = 'Lake Stickney';
nic['Everett'][47] = 'Legion Park';
nic['Everett'][48] = 'Lowell';
nic['Everett'][49] = 'Lundeen Park';
nic['Everett'][50] = 'Lynnwood';
nic['Everett'][51] = 'Machias';
nic['Everett'][52] = 'Madison';
nic['Everett'][53] = 'Mariner';
nic['Everett'][54] = 'Martha Lake';
nic['Everett'][55] = 'Marysville';
nic['Everett'][56] = 'Memorial Stadium';
nic['Everett'][57] = 'Merrill Creek';
nic['Everett'][58] = 'Mill Creek';
nic['Everett'][59] = 'Millers Pond';
nic['Everett'][60] = 'Monroe';
nic['Everett'][61] = 'Mukilteo';
nic['Everett'][62] = 'Mukilteo Blvd';
nic['Everett'][63] = 'Mukilteo Speedway';
nic['Everett'][64] = 'North Everett';
nic['Everett'][65] = 'North Lynnwood';
nic['Everett'][66] = 'Old Town';
nic['Everett'][67] = 'Olympus Terrace';
nic['Everett'][68] = 'On The Hill';
nic['Everett'][69] = 'Paine Field';
nic['Everett'][70] = 'Picnic Point';
nic['Everett'][71] = 'Pinehurst';
nic['Everett'][72] = 'Pioneer Trails';
nic['Everett'][73] = 'Possession Bay';
nic['Everett'][74] = 'Puget Park';
nic['Everett'][75] = 'Riverside';
nic['Everett'][76] = 'Rucker Hill';
nic['Everett'][77] = 'Seahurst';
nic['Everett'][78] = 'Seattle Heights';
nic['Everett'][79] = 'Seattle Hill';
nic['Everett'][80] = 'Silver Firs';
nic['Everett'][81] = 'Silver Lake';
nic['Everett'][82] = 'Skyline';
nic['Everett'][83] = 'Snohomish';
nic['Everett'][84] = 'Snohomish Cascade';
nic['Everett'][85] = 'Soper Hill';
nic['Everett'][86] = 'South Everett';
nic['Everett'][87] = 'South Lk Stevens';
nic['Everett'][88] = 'Stratton Hill';
nic['Everett'][89] = 'Sunnyside';
nic['Everett'][90] = 'Thomas Lake';
nic['Everett'][91] = 'Three Lakes';
nic['Everett'][92] = 'Town-snohomish';
nic['Everett'][93] = 'Upper Ridge';
nic['Everett'][94] = 'Valley View';
nic['Everett'][95] = 'View Ridge';
nic['Everett'][96] = 'Wingate';
nic['Everson'] = new Array();
nic['Everson'][0] = 'Bakerview';
nic['Everson'][1] = 'Bellingham';
nic['Everson'][2] = 'Clearbrook';
nic['Everson'][3] = 'Deming';
nic['Everson'][4] = 'Everson';
nic['Everson'][5] = 'Guide Meridian';
nic['Everson'][6] = 'Lynden';
nic['Everson'][7] = 'Mt Baker';
nic['Everson'][8] = 'Nooksack';
nic['Everson'][9] = 'Nooksack Valley';
nic['Everson'][10] = 'Nugents Corner';
nic['Everson'][11] = 'Strandell';
nic['Everson'][12] = 'Sumas';
nic['Fall City'] = new Array();
nic['Fall City'][0] = 'Aldarra';
nic['Fall City'][1] = 'Blakely Woods';
nic['Fall City'][2] = 'Downtown - Fall City';
nic['Fall City'][3] = 'Fall City';
nic['Fall City'][4] = 'Fall City Road';
nic['Fall City'][5] = 'Glendale';
nic['Fall City'][6] = 'Heathercrest';
nic['Fall City'][7] = 'Herb Farm';
nic['Fall City'][8] = 'Issaquah-Fall City Rd';
nic['Fall City'][9] = 'Issaquah/Sammamish';
nic['Fall City'][10] = 'Klahanie';
nic['Fall City'][11] = 'Lake Alice';
nic['Fall City'][12] = 'Mitchell Hill';
nic['Fall City'][13] = 'North Fall City';
nic['Fall City'][14] = 'Plateau';
nic['Fall City'][15] = 'Preston';
nic['Fall City'][16] = 'Raging River';
nic['Fall City'][17] = 'Redmond';
nic['Fall City'][18] = 'Rutherford';
nic['Fall City'][19] = 'Sammamish';
nic['Fall City'][20] = 'Spring Glen';
nic['Fall City'][21] = 'Treemont';
nic['Fall City'][22] = 'Trossachs';
nic['Federal Way'] = new Array();
nic['Federal Way'][0] = '5 Mile Lake';
nic['Federal Way'][1] = 'Adelaide';
nic['Federal Way'][2] = 'Alderbrook';
nic['Federal Way'][3] = 'Alderdale';
nic['Federal Way'][4] = 'Auburn';
nic['Federal Way'][5] = 'Browns Point';
nic['Federal Way'][6] = 'Buenna';
nic['Federal Way'][7] = 'Campus Estates';
nic['Federal Way'][8] = 'Campus Highlands';
nic['Federal Way'][9] = 'Central Federal Way';
nic['Federal Way'][10] = 'Dash Point';
nic['Federal Way'][11] = 'Des Moines';
nic['Federal Way'][12] = 'Dumas Bay';
nic['Federal Way'][13] = 'Enchanted Village';
nic['Federal Way'][14] = 'Federal Way';
nic['Federal Way'][15] = 'In Town South';
nic['Federal Way'][16] = 'Jovita';
nic['Federal Way'][17] = 'Jovita Heights';
nic['Federal Way'][18] = 'Kent';
nic['Federal Way'][19] = 'Kilarney';
nic['Federal Way'][20] = 'Killarney';
nic['Federal Way'][21] = 'Lake Dolloff';
nic['Federal Way'][22] = 'Lake Geneva';
nic['Federal Way'][23] = 'Lake Killarney';
nic['Federal Way'][24] = 'Lakota';
nic['Federal Way'][25] = 'Laurelwood';
nic['Federal Way'][26] = 'Madrona';
nic['Federal Way'][27] = 'Marine Hills';
nic['Federal Way'][28] = 'Marine View Park';
nic['Federal Way'][29] = 'Milton';
nic['Federal Way'][30] = 'Mirror Lake';
nic['Federal Way'][31] = 'Ne Tacoma';
nic['Federal Way'][32] = 'North Lake';
nic['Federal Way'][33] = 'North Milton';
nic['Federal Way'][34] = 'Northshore';
nic['Federal Way'][35] = 'Panther Lake';
nic['Federal Way'][36] = 'Park Trails';
nic['Federal Way'][37] = 'Redondo';
nic['Federal Way'][38] = 'Regency Woods';
nic['Federal Way'][39] = 'Ridgeview';
nic['Federal Way'][40] = 'S Federal Way';
nic['Federal Way'][41] = 'South Federal Way';
nic['Federal Way'][42] = 'Star Lake';
nic['Federal Way'][43] = 'Steel Lake';
nic['Federal Way'][44] = 'Summit';
nic['Federal Way'][45] = 'Tacoma';
nic['Federal Way'][46] = 'Twin Lakes';
nic['Federal Way'][47] = 'Wedgewood';
nic['Federal Way'][48] = 'West Campus';
nic['Federal Way'][49] = 'West Hill';
nic['Federal Way'][50] = 'Woodmont';
nic['Ferndale'] = new Array();
nic['Ferndale'][0] = 'Bellingham';
nic['Ferndale'][1] = 'Custer';
nic['Ferndale'][2] = 'Ferndale';
nic['Ferndale'][3] = 'Guide Meridian';
nic['Ferndale'][4] = 'Lummi Island';
nic['Ferndale'][5] = 'Lynden';
nic['Ferndale'][6] = 'Pleasant Valley';
nic['Ferndale'][7] = 'Sandy Point';
nic['Fife'] = new Array();
nic['Fife'][0] = 'Edgewood';
nic['Fife'][1] = 'Federal Way';
nic['Fife'][2] = 'Fife';
nic['Fife'][3] = 'Fife Heights';
nic['Fife'][4] = 'Fife Industrial Park';
nic['Fife'][5] = 'Lower Milton';
nic['Fife'][6] = 'Milton';
nic['Fife'][7] = 'North Puyallup';
nic['Fife'][8] = 'Puyallup';
nic['Fife'][9] = 'Puyallup Valley';
nic['Fife'][10] = 'Radiance';
nic['Fife'][11] = 'S Federal Way';
nic['Fife'][12] = 'Sheffield Place';
nic['Fircrest'] = new Array();
nic['Fircrest'][0] = 'Fircrest';
nic['Fircrest'][1] = 'Regents Park';
nic['Fircrest'][2] = 'Tacoma';
nic['Fircrest'][3] = 'University Place';
nic['Ford'] = new Array();
nic['Ford'][0] = 'Ford';
nic['Forks'] = new Array();
nic['Forks'][0] = '710-Other West';
nic['Forks'][1] = 'Clearwater';
nic['Forks'][2] = 'Forks';
nic['Forks'][3] = 'Lower Hoh';
nic['Forks'][4] = 'Sappho';
nic['Forks'][5] = 'South Forks';
nic['Forks'][6] = 'Upper Hoh';
nic['Fox Island'] = new Array();
nic['Fox Island'][0] = 'Fox Island';
nic['Fox Island'][1] = 'Shorewood Beach';
nic['Fox Island'][2] = 'Sylvan';
nic['Fox Island'][3] = 'University Place';
nic['Freeland'] = new Array();
nic['Freeland'][0] = 'Beverly Beach';
nic['Freeland'][1] = 'Bush Point';
nic['Freeland'][2] = 'Central Whidbey';
nic['Freeland'][3] = 'Double Bluff';
nic['Freeland'][4] = 'East Harbor';
nic['Freeland'][5] = 'Freeland';
nic['Freeland'][6] = 'Goss Lake';
nic['Freeland'][7] = 'Harbor Sands';
nic['Freeland'][8] = 'Holmes Harbor (Gyc)';
nic['Freeland'][9] = 'Honeymoon Bay';
nic['Freeland'][10] = 'Honeymoon Lake';
nic['Freeland'][11] = 'Mutiny Bay';
nic['Freeland'][12] = 'Useless Bay';
nic['Frost Island'] = new Array();
nic['Frost Island'][0] = 'Frost Island';
nic['Frost Island'][1] = 'Lopez Island';
nic['Frost Island'][2] = 'Other Islands';
nic['Fruitland'] = new Array();
nic['Fruitland'][0] = 'Fruitland';
nic['Fruitland'][1] = 'Hunters';
nic['Galvin'] = new Array();
nic['Galvin'][0] = 'Centralia';
nic['Galvin'][1] = 'Fords Prairie';
nic['Gardener'] = new Array();
nic['Gardener'][0] = '787-Gardiner';
nic['Gardener'][1] = 'Discovery Bay';
nic['Gardener'][2] = 'Gardiner';
nic['Gardiner'] = new Array();
nic['Gardiner'][0] = '787-Gardiner';
nic['Gardiner'][1] = 'Clearwater';
nic['Gardiner'][2] = 'Gardiner';
nic['Gardiner'][3] = 'Sequim';
nic['George'] = new Array();
nic['George'][0] = 'Frenchman Hill';
nic['George'][1] = 'George';
nic['George'][2] = 'Quincy';
nic['Gifford'] = new Array();
nic['Gifford'][0] = 'Gifford';
nic['Gig Harbor'] = new Array();
nic['Gig Harbor'][0] = 'Arletta';
nic['Gig Harbor'][1] = 'Artondale';
nic['Gig Harbor'][2] = 'Bridgewood';
nic['Gig Harbor'][3] = 'Burley';
nic['Gig Harbor'][4] = 'Canterwood';
nic['Gig Harbor'][5] = 'Carney Lake';
nic['Gig Harbor'][6] = 'Case Inlet';
nic['Gig Harbor'][7] = 'Colvos Passage';
nic['Gig Harbor'][8] = 'Crescent Valley';
nic['Gig Harbor'][9] = 'Cromwell';
nic['Gig Harbor'][10] = 'Discovery Point';
nic['Gig Harbor'][11] = 'Dutcher\'s Cove';
nic['Gig Harbor'][12] = 'East Gig Harbor';
nic['Gig Harbor'][13] = 'Elgin';
nic['Gig Harbor'][14] = 'Filucy Bay';
nic['Gig Harbor'][15] = 'Fox Island';
nic['Gig Harbor'][16] = 'Gig Harbor';
nic['Gig Harbor'][17] = 'Gig Harbor North';
nic['Gig Harbor'][18] = 'Glen Cove';
nic['Gig Harbor'][19] = 'Glenwood';
nic['Gig Harbor'][20] = 'Henderson Bay';
nic['Gig Harbor'][21] = 'Herron Island';
nic['Gig Harbor'][22] = 'Home';
nic['Gig Harbor'][23] = 'Horsehead Bay';
nic['Gig Harbor'][24] = 'Horseshoe Lake';
nic['Gig Harbor'][25] = 'In Town';
nic['Gig Harbor'][26] = 'Key Center';
nic['Gig Harbor'][27] = 'Key Peninsula';
nic['Gig Harbor'][28] = 'Key Peninsula North';
nic['Gig Harbor'][29] = 'Key Peninsula South';
nic['Gig Harbor'][30] = 'Kopachuck';
nic['Gig Harbor'][31] = 'Lake Holiday';
nic['Gig Harbor'][32] = 'Lake Of The Woods';
nic['Gig Harbor'][33] = 'Lakebay';
nic['Gig Harbor'][34] = 'Longbranch';
nic['Gig Harbor'][35] = 'Madrona';
nic['Gig Harbor'][36] = 'Midway';
nic['Gig Harbor'][37] = 'Minter';
nic['Gig Harbor'][38] = 'North Rosedale';
nic['Gig Harbor'][39] = 'North Vaughn';
nic['Gig Harbor'][40] = 'Olalla';
nic['Gig Harbor'][41] = 'Palmer Lake';
nic['Gig Harbor'][42] = 'Peacock Hill';
nic['Gig Harbor'][43] = 'Peninsula';
nic['Gig Harbor'][44] = 'Point Evans';
nic['Gig Harbor'][45] = 'Point Fosdick';
nic['Gig Harbor'][46] = 'Point Richmond';
nic['Gig Harbor'][47] = 'Purdy';
nic['Gig Harbor'][48] = 'Raft Island';
nic['Gig Harbor'][49] = 'Ray Nash Valley';
nic['Gig Harbor'][50] = 'Richmond Point';
nic['Gig Harbor'][51] = 'Rocky Bay';
nic['Gig Harbor'][52] = 'Rosedale';
nic['Gig Harbor'][53] = 'Seacliff';
nic['Gig Harbor'][54] = 'Shore Acres';
nic['Gig Harbor'][55] = 'South Kitsap';
nic['Gig Harbor'][56] = 'Sunrise Beach';
nic['Gig Harbor'][57] = 'Sylvia Lake';
nic['Gig Harbor'][58] = 'Taylor Bay Area';
nic['Gig Harbor'][59] = 'The Narrows';
nic['Gig Harbor'][60] = 'Vaughn';
nic['Gig Harbor'][61] = 'Warren';
nic['Gig Harbor'][62] = 'Wauna';
nic['Gig Harbor'][63] = 'Wauna Shores';
nic['Gig Harbor'][64] = 'Whitley Hills';
nic['Gig Harbor'][65] = 'Wollochet';
nic['Gig Harbor'][66] = 'Wollochet Area';
nic['Gig Harbor'][67] = 'Wollochet Bay';
nic['Gig Harbor'][68] = 'Wright Bliss';
nic['Glacier'] = new Array();
nic['Glacier'][0] = 'Deming';
nic['Glacier'][1] = 'Glacier';
nic['Glacier'][2] = 'Nooksack Valley';
nic['Glacier'][3] = 'Sumas';
nic['Glenhaven'] = new Array();
nic['Glenhaven'][0] = 'Cain Lake';
nic['Glenhaven'][1] = 'Deming';
nic['Glenhaven'][2] = 'Glenhaven';
nic['Glenhaven'][3] = 'Sedro Woolley';
nic['Glenhaven'][4] = 'Sudden Valley';
nic['Glenoma'] = new Array();
nic['Glenoma'][0] = 'Centralia';
nic['Glenoma'][1] = 'Glenoma';
nic['Gold Bar'] = new Array();
nic['Gold Bar'][0] = 'Baring';
nic['Gold Bar'][1] = 'Big Bend';
nic['Gold Bar'][2] = 'Gold Bar';
nic['Gold Bar'][3] = 'Index';
nic['Gold Bar'][4] = 'May Creek';
nic['Gold Bar'][5] = 'Mt Index Riversites';
nic['Gold Bar'][6] = 'Skykomish';
nic['Gold Bar'][7] = 'Snohomish';
nic['Gold Bar'][8] = 'Sultan';
nic['Gold Bar'][9] = 'Town - Gold Bar';
nic['Gold Bar'][10] = 'Wallace Falls';
nic['Gold Bar'][11] = 'Wallace River';
nic['Goldendale'] = new Array();
nic['Goldendale'][0] = 'Goldendale';
nic['Goldendale'][1] = 'Klickitat';
nic['Graham'] = new Array();
nic['Graham'][0] = 'Bethel';
nic['Graham'][1] = 'Copperfield';
nic['Graham'][2] = 'Country Park';
nic['Graham'][3] = 'Eatonville';
nic['Graham'][4] = 'Frederickson';
nic['Graham'][5] = 'Graham';
nic['Graham'][6] = 'Graham Hill';
nic['Graham'][7] = 'In Town';
nic['Graham'][8] = 'Indian Springs';
nic['Graham'][9] = 'Kapowsin';
nic['Graham'][10] = 'Lake Tanwax';
nic['Graham'][11] = 'Lake Whitman';
nic['Graham'][12] = 'Lipoma Firs';
nic['Graham'][13] = 'Lipoma Golf Course';
nic['Graham'][14] = 'Lost Creek';
nic['Graham'][15] = 'North';
nic['Graham'][16] = 'Orting';
nic['Graham'][17] = 'Puyallup';
nic['Graham'][18] = 'Roy';
nic['Graham'][19] = 'Rural';
nic['Graham'][20] = 'Silver Creek';
nic['Graham'][21] = 'South Hill';
nic['Graham'][22] = 'South Orting';
nic['Graham'][23] = 'South Spanaway';
nic['Graham'][24] = 'Spanaway';
nic['Graham'][25] = 'Sunrise';
nic['Graham'][26] = 'The Country';
nic['Graham'][27] = 'Thrift';
nic['Grand Coulee'] = new Array();
nic['Grand Coulee'][0] = 'Coulee Dam';
nic['Grand Coulee'][1] = 'Grand Coulee';
nic['Grand Coulee'][2] = 'Grand Coulee Dam';
nic['Grand Coulee'][3] = 'Rimrock';
nic['Grand Mound'] = new Array();
nic['Grand Mound'][0] = 'Grand Mound';
nic['Grand Mound'][1] = 'Rochester';
nic['Grand Mound'][2] = 'Tenino';
nic['Grandview'] = new Array();
nic['Grandview'][0] = 'Grandview';
nic['Granger'] = new Array();
nic['Granger'][0] = 'Granger';
nic['Granger'][1] = 'Sunnyside';
nic['Granger'][2] = 'Yakima';
nic['Granger'][3] = 'Zillah';
nic['Granite Falls'] = new Array();
nic['Granite Falls'][0] = 'Arlington';
nic['Granite Falls'][1] = 'Burn Road';
nic['Granite Falls'][2] = 'Canyon Creek';
nic['Granite Falls'][3] = 'Canyon Falls';
nic['Granite Falls'][4] = 'Downtown';
nic['Granite Falls'][5] = 'Forest Glade';
nic['Granite Falls'][6] = 'Getchell';
nic['Granite Falls'][7] = 'Grandview';
nic['Granite Falls'][8] = 'Granite Falls';
nic['Granite Falls'][9] = 'Hidden Valley';
nic['Granite Falls'][10] = 'In Town - Granite Falls';
nic['Granite Falls'][11] = 'Indian Summer';
nic['Granite Falls'][12] = 'Jordan Road';
nic['Granite Falls'][13] = 'Lake Bosworth';
nic['Granite Falls'][14] = 'Lake Roesiger';
nic['Granite Falls'][15] = 'Lake Stevens';
nic['Granite Falls'][16] = 'Machias';
nic['Granite Falls'][17] = 'Menzel Lake Road';
nic['Granite Falls'][18] = 'Mt Loop Hwy';
nic['Granite Falls'][19] = 'Newberg';
nic['Granite Falls'][20] = 'Pilchuck River';
nic['Granite Falls'][21] = 'Pinnacle Ridge';
nic['Granite Falls'][22] = 'River & Forest';
nic['Granite Falls'][23] = 'Riverview';
nic['Granite Falls'][24] = 'Robe';
nic['Granite Falls'][25] = 'Robe Valley';
nic['Granite Falls'][26] = 'Snohomish';
nic['Granite Falls'][27] = 'Verlot';
nic['Granite Falls'][28] = 'Woodriver';
nic['Grapeview'] = new Array();
nic['Grapeview'][0] = 'Allyn';
nic['Grapeview'][1] = 'Benson Lake';
nic['Grapeview'][2] = 'Case Inlet';
nic['Grapeview'][3] = 'Emerald Lake';
nic['Grapeview'][4] = 'Grapeview';
nic['Grapeview'][5] = 'Hood Canal';
nic['Grapeview'][6] = 'Mason Lake';
nic['Grapeview'][7] = 'Orchard Beach';
nic['Grapeview'][8] = 'Pickering';
nic['Grapeview'][9] = 'Rustlewood';
nic['Grapeview'][10] = 'Spencer Lake';
nic['Grapeview'][11] = 'Stretch Island';
nic['Grapeview'][12] = 'Treasure Island';
nic['Grayland'] = new Array();
nic['Grayland'][0] = 'Grayland';
nic['Grayland'][1] = 'Heather';
nic['Grayland'][2] = 'North Cove';
nic['Grayland'][3] = 'Salt Aire Shores';
nic['Grayland'][4] = 'Westport';
nic['Grays River'] = new Array();
nic['Grays River'][0] = 'Brookfield';
nic['Grays River'][1] = 'Cathlamet';
nic['Grays River'][2] = 'Grays River';
nic['Greenacres'] = new Array();
nic['Greenacres'][0] = 'Spokane';
nic['Greenbank'] = new Array();
nic['Greenbank'][0] = 'Coupeville';
nic['Greenbank'][1] = 'Freeland';
nic['Greenbank'][2] = 'Greenbank';
nic['Greenbank'][3] = 'Holmes Harbor (Gyc)';
nic['Greenbank'][4] = 'Honeymoon Bay';
nic['Greenbank'][5] = 'Honeymoon Lake';
nic['Greenbank'][6] = 'Lagoon Point';
nic['Greenbank'][7] = 'Teronda';
nic['Greenwater'] = new Array();
nic['Greenwater'][0] = 'Crystal';
nic['Greenwater'][1] = 'Greenwater';
nic['Guemes Island'] = new Array();
nic['Guemes Island'][0] = 'Guemes Island';
nic['Guemes Island'][1] = 'Sinclair Island';
nic['Hamilton'] = new Array();
nic['Hamilton'][0] = 'Hamilton';
nic['Hamilton'][1] = 'Sedro Woolley';
nic['Hansville'] = new Array();
nic['Hansville'][0] = 'Driftwood Key';
nic['Hansville'][1] = 'Hansville';
nic['Hansville'][2] = 'Hood Canal';
nic['Hansville'][3] = 'Point No Point';
nic['Hansville'][4] = 'Shorewood';
nic['Hansville'][5] = 'Twin Spits';
nic['Harrah'] = new Array();
nic['Harrah'][0] = 'Toppenish';
nic['Harrah'][1] = 'Yakima';
nic['Harrington'] = new Array();
nic['Harrington'][0] = 'Harrington';
nic['Hartline'] = new Array();
nic['Hartline'][0] = 'Hartline';
nic['Hat Island'] = new Array();
nic['Hat Island'][0] = 'Hat Island';
nic['Hat Island'][1] = 'Mukilteo';
nic['Henry Island'] = new Array();
nic['Henry Island'][0] = 'Henry Island';
nic['Henry Island'][1] = 'San Juan Island';
nic['Henry Island'][2] = 'West';
nic['Hobart'] = new Array();
nic['Hobart'][0] = 'Hobart';
nic['Hockinson'] = new Array();
nic['Hockinson'][0] = 'Hockinson';
nic['Hood Canal'] = new Array();
nic['Hood Canal'][0] = 'Dewatto';
nic['Hood Canal'][1] = 'Hood Canal';
nic['Hoodsport'] = new Array();
nic['Hoodsport'][0] = 'Beacon Point';
nic['Hoodsport'][1] = 'Holiday Beach';
nic['Hoodsport'][2] = 'Hood Canal';
nic['Hoodsport'][3] = 'Hoodsport';
nic['Hoodsport'][4] = 'Lake Cushman';
nic['Hoodsport'][5] = 'Lilliwaup';
nic['Hoquiam'] = new Array();
nic['Hoquiam'][0] = 'Aberdeen';
nic['Hoquiam'][1] = 'Axford Prairie';
nic['Hoquiam'][2] = 'Beacon Hill';
nic['Hoquiam'][3] = 'East Hoquiam';
nic['Hoquiam'][4] = 'Grays Harbor City';
nic['Hoquiam'][5] = 'Hoquiam';
nic['Hoquiam'][6] = 'Hoquiam Hill';
nic['Hoquiam'][7] = 'Humptulips';
nic['Hoquiam'][8] = 'New London';
nic['Hoquiam'][9] = 'North Hoquiam';
nic['Hoquiam'][10] = 'Northeast';
nic['Hoquiam'][11] = 'Ocean City';
nic['Hoquiam'][12] = 'Ocean Shores';
nic['Hoquiam'][13] = 'Ontario';
nic['Hoquiam'][14] = 'West Hoquiam';
nic['Hoquiam'][15] = 'Woodlawn';
nic['Humptulips'] = new Array();
nic['Humptulips'][0] = 'Axford Prairie';
nic['Humptulips'][1] = 'Humptulips';
nic['Humptulips'][2] = 'North Hoquiam';
nic['Hunters'] = new Array();
nic['Hunters'][0] = 'Gifford';
nic['Hunters'][1] = 'Hunters';
nic['Hunts Point'] = new Array();
nic['Hunts Point'][0] = 'Evergreen Point';
nic['Hunts Point'][1] = 'Hunts Point';
nic['Hunts Point'][2] = 'Westside';
nic['Ilwaco'] = new Array();
nic['Ilwaco'][0] = 'Ilwaco';
nic['Ilwaco'][1] = 'Long Beach';
nic['Inchelium'] = new Array();
nic['Inchelium'][0] = 'Inchelium';
nic['Inchelium'][1] = 'Kettle Falls';
nic['Index'] = new Array();
nic['Index'][0] = 'Baring';
nic['Index'][1] = 'Index';
nic['Index'][2] = 'Mt Index Riversites';
nic['Index'][3] = 'Skyko Park';
nic['Index'][4] = 'Stevens Pass';
nic['Index'][5] = 'Town - Index';
nic['Indianola'] = new Array();
nic['Indianola'][0] = 'Indian Bay';
nic['Indianola'][1] = 'Indianola';
nic['Indianola'][2] = 'Indianola Beach';
nic['Indianola'][3] = 'Kingston';
nic['Indianola'][4] = 'Miller Bay Estates';
nic['Indianola'][5] = 'Poulsbo';
nic['Ione'] = new Array();
nic['Ione'][0] = 'Ione';
nic['Issaquah'] = new Array();
nic['Issaquah'][0] = 'Beaver Lake';
nic['Issaquah'][1] = 'Bellevue';
nic['Issaquah'][2] = 'Cedar River';
nic['Issaquah'][3] = 'Coalfield';
nic['Issaquah'][4] = 'Cougar Mountain';
nic['Issaquah'][5] = 'Downtown Issaquah';
nic['Issaquah'][6] = 'East Bellevue';
nic['Issaquah'][7] = 'East Lake Sammamish';
nic['Issaquah'][8] = 'East Renton';
nic['Issaquah'][9] = 'Fall City';
nic['Issaquah'][10] = 'Four Lakes';
nic['Issaquah'][11] = 'Gilman Village';
nic['Issaquah'][12] = 'Heathercrest';
nic['Issaquah'][13] = 'High Point';
nic['Issaquah'][14] = 'Highlands';
nic['Issaquah'][15] = 'Hobart';
nic['Issaquah'][16] = 'Issaquah';
nic['Issaquah'][17] = 'Issaquah Highlands';
nic['Issaquah'][18] = 'Issaquah-Fall City Rd';
nic['Issaquah'][19] = 'Issaquah/Sammamish';
nic['Issaquah'][20] = 'Klahanie';
nic['Issaquah'][21] = 'Lake Sammamish';
nic['Issaquah'][22] = 'Lakemont';
nic['Issaquah'][23] = 'Maple Valley';
nic['Issaquah'][24] = 'May Valley';
nic['Issaquah'][25] = 'Microsoft';
nic['Issaquah'][26] = 'Mirrormont';
nic['Issaquah'][27] = 'Montreux';
nic['Issaquah'][28] = 'Newcastle';
nic['Issaquah'][29] = 'Newport Hills';
nic['Issaquah'][30] = 'Pine Lake';
nic['Issaquah'][31] = 'Plateau';
nic['Issaquah'][32] = 'Preston';
nic['Issaquah'][33] = 'Providence Point';
nic['Issaquah'][34] = 'Raging River';
nic['Issaquah'][35] = 'Redmond';
nic['Issaquah'][36] = 'Renton';
nic['Issaquah'][37] = 'Sammamish';
nic['Issaquah'][38] = 'South Lake Sammamish';
nic['Issaquah'][39] = 'Squak Mountain';
nic['Issaquah'][40] = 'Talus';
nic['Issaquah'][41] = 'Tiger Mountain';
nic['Issaquah'][42] = 'Trossachs';
nic['Issaquah'][43] = 'Upper Preston';
nic['Issaquah'][44] = 'Vuemont';
nic['Issaquah'][45] = 'West Lake Sammamish';
nic['Johns Island'] = new Array();
nic['Johns Island'][0] = 'Stuart Island';
nic['Joyce'] = new Array();
nic['Joyce'][0] = '712-Joyce';
nic['Joyce'][1] = '720-NW Port Angeles';
nic['Juanita'] = new Array();
nic['Juanita'][0] = 'Juanita';
nic['Kachess'] = new Array();
nic['Kachess'][0] = 'Kachess';
nic['Kahlotus'] = new Array();
nic['Kahlotus'][0] = 'Connell';
nic['Kalama'] = new Array();
nic['Kalama'][0] = 'Green Mountain';
nic['Kalama'][1] = 'Kalama';
nic['Kalama'][2] = 'Kalama River';
nic['Kalama'][3] = 'Woodland';
nic['Kapowsin'] = new Array();
nic['Kapowsin'][0] = 'Kapowsin';
nic['Keller'] = new Array();
nic['Keller'][0] = 'Republic';
nic['Kelso'] = new Array();
nic['Kelso'][0] = 'Beacon Hill';
nic['Kelso'][1] = 'Butler Acres';
nic['Kelso'][2] = 'Carrolls';
nic['Kelso'][3] = 'Castle Rock';
nic['Kelso'][4] = 'Columbia Heights';
nic['Kelso'][5] = 'East Kelso';
nic['Kelso'][6] = 'Headquarters';
nic['Kelso'][7] = 'Hillside';
nic['Kelso'][8] = 'Kalama';
nic['Kelso'][9] = 'Kalama River';
nic['Kelso'][10] = 'Kelso';
nic['Kelso'][11] = 'Lexington';
nic['Kelso'][12] = 'Longview';
nic['Kelso'][13] = 'Mt Brynion';
nic['Kelso'][14] = 'North Kelso';
nic['Kelso'][15] = 'Old Kelso Hill';
nic['Kelso'][16] = 'Ostrander';
nic['Kelso'][17] = 'Pleasant Hill';
nic['Kelso'][18] = 'Rose Valley';
nic['Kelso'][19] = 'South Kelso';
nic['Kelso'][20] = 'Wallace';
nic['Kelso'][21] = 'West Kelso';
nic['Kelso'][22] = 'Westside Hwy';
nic['Kendall'] = new Array();
nic['Kendall'][0] = 'Kendall';
nic['Kendall'][1] = 'Maple Falls';
nic['Kendall'][2] = 'Sumas';
nic['Kenmore'] = new Array();
nic['Kenmore'][0] = 'Arrowhead';
nic['Kenmore'][1] = 'Bothell';
nic['Kenmore'][2] = 'Canyon Park';
nic['Kenmore'][3] = 'Eagle Brook';
nic['Kenmore'][4] = 'East Kenmore';
nic['Kenmore'][5] = 'Finn Hill';
nic['Kenmore'][6] = 'Forest Park';
nic['Kenmore'][7] = 'Inglemoor';
nic['Kenmore'][8] = 'Inglewood';
nic['Kenmore'][9] = 'Inglewood/Inglemoor';
nic['Kenmore'][10] = 'Juanita';
nic['Kenmore'][11] = 'Kenmore';
nic['Kenmore'][12] = 'Kingsgate';
nic['Kenmore'][13] = 'Kirkland';
nic['Kenmore'][14] = 'Lake City';
nic['Kenmore'][15] = 'Lake Forest Park';
nic['Kenmore'][16] = 'Lake Forest Park Estates';
nic['Kenmore'][17] = 'Lockwood';
nic['Kenmore'][18] = 'Moorlands';
nic['Kenmore'][19] = 'North Bay View';
nic['Kenmore'][20] = 'North Juanita';
nic['Kenmore'][21] = 'Northlake';
nic['Kenmore'][22] = 'Northshore Summit';
nic['Kenmore'][23] = 'Redmond';
nic['Kenmore'][24] = 'Richmond Beach';
nic['Kenmore'][25] = 'Sammamish River';
nic['Kenmore'][26] = 'Seattle';
nic['Kenmore'][27] = 'Shoreline';
nic['Kenmore'][28] = 'Uplake';
nic['Kenmore'][29] = 'West Hill';
nic['Kenmore'][30] = 'Westhill';
nic['Kennewick'] = new Array();
nic['Kennewick'][0] = 'Benton';
nic['Kennewick'][1] = 'Finley';
nic['Kennewick'][2] = 'Kennewick';
nic['Kent'] = new Array();
nic['Kent'][0] = 'Angle Lake';
nic['Kent'][1] = 'Auburn';
nic['Kent'][2] = 'Benson Hill';
nic['Kent'][3] = 'Black Diamond';
nic['Kent'][4] = 'Cambridge';
nic['Kent'][5] = 'Covington';
nic['Kent'][6] = 'Des Moines';
nic['Kent'][7] = 'Downtown Kent';
nic['Kent'][8] = 'East Auburn';
nic['Kent'][9] = 'East Hill';
nic['Kent'][10] = 'Emerald Downs';
nic['Kent'][11] = 'Fairwood';
nic['Kent'][12] = 'Federal Way';
nic['Kent'][13] = 'Forest Estates';
nic['Kent'][14] = 'Garrison Creek';
nic['Kent'][15] = 'Green River';
nic['Kent'][16] = 'Green River College';
nic['Kent'][17] = 'Highline';
nic['Kent'][18] = 'Jovita';
nic['Kent'][19] = 'Kangley';
nic['Kent'][20] = 'Kent';
nic['Kent'][21] = 'Kentlake Highlands';
nic['Kent'][22] = 'Kentridge';
nic['Kent'][23] = 'Lake Fenwick';
nic['Kent'][24] = 'Lake Meridian';
nic['Kent'][25] = 'Lake Morton';
nic['Kent'][26] = 'Lake Sawyer';
nic['Kent'][27] = 'Lake Wilderness';
nic['Kent'][28] = 'Lake Youngs';
nic['Kent'][29] = 'Maple Valley';
nic['Kent'][30] = 'Meridian Valley CC';
nic['Kent'][31] = 'Midway';
nic['Kent'][32] = 'Panther Lake';
nic['Kent'][33] = 'Park Orchard';
nic['Kent'][34] = 'Parkview';
nic['Kent'][35] = 'Petrovitsky';
nic['Kent'][36] = 'Pipe Lake';
nic['Kent'][37] = 'Redondo';
nic['Kent'][38] = 'Remington';
nic['Kent'][39] = 'Renton';
nic['Kent'][40] = 'Riverview';
nic['Kent'][41] = 'S Federal Way';
nic['Kent'][42] = 'Saltwater Highlands';
nic['Kent'][43] = 'Saltwater Park';
nic['Kent'][44] = 'Scenic Hill';
nic['Kent'][45] = 'Seatac';
nic['Kent'][46] = 'Soos Creek';
nic['Kent'][47] = 'Southcenter';
nic['Kent'][48] = 'Springbrook';
nic['Kent'][49] = 'Star Lake';
nic['Kent'][50] = 'Talbot Hill';
nic['Kent'][51] = 'The Lakes';
nic['Kent'][52] = 'Timberlane';
nic['Kent'][53] = 'West Hill';
nic['Kent'][54] = 'Willow Park';
nic['Kent'][55] = 'Wilson Hill';
nic['Kent'][56] = 'Winterwood';
nic['Kettle Falls'] = new Array();
nic['Kettle Falls'][0] = 'Kettle Falls';
nic['Kettle Falls'][1] = 'Northport';
nic['Keyport'] = new Array();
nic['Keyport'][0] = 'Keyport';
nic['Keyport'][1] = 'Poulsbo';
nic['Keyport'][2] = 'Scandia';
nic['Kingston'] = new Array();
nic['Kingston'][0] = 'Driftwood Key';
nic['Kingston'][1] = 'Eglon';
nic['Kingston'][2] = 'Gamblewood';
nic['Kingston'][3] = 'Hansville';
nic['Kingston'][4] = 'Hood Canal';
nic['Kingston'][5] = 'Indianola';
nic['Kingston'][6] = 'Jefferson Beach';
nic['Kingston'][7] = 'Kingston';
nic['Kingston'][8] = 'Little Boston';
nic['Kingston'][9] = 'Miller Bay Estates';
nic['Kingston'][10] = 'Poulsbo';
nic['Kingston'][11] = 'President Point';
nic['Kirkland'] = new Array();
nic['Kirkland'][0] = 'Bellevue';
nic['Kirkland'][1] = 'Bothell';
nic['Kirkland'][2] = 'Bridle Trails';
nic['Kirkland'][3] = 'Cedar';
nic['Kirkland'][4] = 'Downtown';
nic['Kirkland'][5] = 'East Bellevue';
nic['Kirkland'][6] = 'East Of Market';
nic['Kirkland'][7] = 'Everest Park';
nic['Kirkland'][8] = 'Finn Hill';
nic['Kirkland'][9] = 'Forbes Creek';
nic['Kirkland'][10] = 'Highlands';
nic['Kirkland'][11] = 'Holmes Point';
nic['Kirkland'][12] = 'Houghton';
nic['Kirkland'][13] = 'Juanita';
nic['Kirkland'][14] = 'Juanita Point';
nic['Kirkland'][15] = 'Kingsgate';
nic['Kirkland'][16] = 'Kirkland';
nic['Kirkland'][17] = 'North Juanita';
nic['Kirkland'][18] = 'North Rose Hill';
nic['Kirkland'][19] = 'Queensgate';
nic['Kirkland'][20] = 'Rose Hill';
nic['Kirkland'][21] = 'Sw Woodinville';
nic['Kirkland'][22] = 'Timberwood';
nic['Kirkland'][23] = 'Totem Lake';
nic['Kirkland'][24] = 'West Bellevue';
nic['Kirkland'][25] = 'West Of Market';
nic['Kirkland'][26] = 'Yarrow';
nic['Kirkland'][27] = 'Yarrow Point';
nic['Kittitas'] = new Array();
nic['Kittitas'][0] = 'Fairview';
nic['Kittitas'][1] = 'Kittitas';
nic['Kittitas'][2] = 'Manastash';
nic['Kittitas'][3] = 'Parke Creek';
nic['Kittitas'][4] = 'Rural - North';
nic['Klickitat'] = new Array();
nic['Klickitat'][0] = 'Goldendale';
nic['La Center'] = new Array();
nic['La Center'][0] = 'Battle Ground';
nic['La Center'][1] = 'Cardai Hill';
nic['La Center'][2] = 'Daybreak';
nic['La Center'][3] = 'Farger Lake';
nic['La Center'][4] = 'La Center';
nic['La Center'][5] = 'LaCenter';
nic['La Center'][6] = 'Pine Grove';
nic['La Center'][7] = 'Vancouver';
nic['La Center'][8] = 'View';
nic['La Center'][9] = 'Woodland City';
nic['La Conner'] = new Array();
nic['La Conner'][0] = 'Anacortes';
nic['La Conner'][1] = 'City';
nic['La Conner'][2] = 'Historic';
nic['La Conner'][3] = 'Hope Island';
nic['La Conner'][4] = 'La Conner';
nic['La Conner'][5] = 'Shelter Bay';
nic['La Conner'][6] = 'Skagit Bay';
nic['La Conner'][7] = 'Skagit Beach';
nic['La Conner'][8] = 'Snee Oosh';
nic['La Push'] = new Array();
nic['La Push'][0] = '710-Other West';
nic['Lacey'] = new Array();
nic['Lacey'][0] = 'Beachcrest';
nic['Lacey'][1] = 'Capital City Golf';
nic['Lacey'][2] = 'Central Lacey';
nic['Lacey'][3] = 'Chambers/East';
nic['Lacey'][4] = 'East Olympia';
nic['Lacey'][5] = 'Eastside Olympia';
nic['Lacey'][6] = 'Evergreen Valley';
nic['Lacey'][7] = 'Hawks Prairie';
nic['Lacey'][8] = 'Henderson Inlet';
nic['Lacey'][9] = 'Hicks Lake';
nic['Lacey'][10] = 'Horizon Pointe';
nic['Lacey'][11] = 'Indian Summer';
nic['Lacey'][12] = 'Jubilee';
nic['Lacey'][13] = 'Kelly\'s Corner';
nic['Lacey'][14] = 'Lacey';
nic['Lacey'][15] = 'Lake Forest';
nic['Lacey'][16] = 'Lake Forrest';
nic['Lacey'][17] = 'Lake St Clair';
nic['Lacey'][18] = 'Long Lake East';
nic['Lacey'][19] = 'Long Lake West';
nic['Lacey'][20] = 'Madrona Park';
nic['Lacey'][21] = 'McAllister Park';
nic['Lacey'][22] = 'Meadows';
nic['Lacey'][23] = 'Meridian';
nic['Lacey'][24] = 'Nisqually';
nic['Lacey'][25] = 'Olympia';
nic['Lacey'][26] = 'Pattison Lake';
nic['Lacey'][27] = 'South Eastside Olympia';
nic['Lacey'][28] = 'Steilacoom Heights';
nic['Lacey'][29] = 'Sunwood Lakes';
nic['Lacey'][30] = 'Tanglewilde';
nic['Lacey'][31] = 'Union Mills';
nic['Lake City'] = new Array();
nic['Lake City'][0] = 'Lake City';
nic['Lake City'][1] = 'Victory Heights';
nic['Lake Cle Elum'] = new Array();
nic['Lake Cle Elum'][0] = 'Lake Cle Elum';
nic['Lake Forest Park'] = new Array();
nic['Lake Forest Park'][0] = 'Briercrest';
nic['Lake Forest Park'][1] = 'Brookside';
nic['Lake Forest Park'][2] = 'Cedar Park';
nic['Lake Forest Park'][3] = 'Forest Park';
nic['Lake Forest Park'][4] = 'Hillside';
nic['Lake Forest Park'][5] = 'Horizon View';
nic['Lake Forest Park'][6] = 'Inglewood/Inglemoor';
nic['Lake Forest Park'][7] = 'Kenmore';
nic['Lake Forest Park'][8] = 'Lake City';
nic['Lake Forest Park'][9] = 'Lake Forest Park';
nic['Lake Forest Park'][10] = 'Lake Forest Park Estates';
nic['Lake Forest Park'][11] = 'Lake Highlands';
nic['Lake Forest Park'][12] = 'Mountlake Terrace';
nic['Lake Forest Park'][13] = 'North City';
nic['Lake Forest Park'][14] = 'Seattle';
nic['Lake Forest Park'][15] = 'Sheridan';
nic['Lake Forest Park'][16] = 'Sheridan Beach';
nic['Lake Forest Park'][17] = 'Shoreline';
nic['Lake Forest Park'][18] = 'Trafford Park';
nic['Lake Forest Park'][19] = 'Uplake';
nic['Lake McMurray'] = new Array();
nic['Lake McMurray'][0] = 'Lake McMurray';
nic['Lake Stevens'] = new Array();
nic['Lake Stevens'][0] = 'Bunk Foss';
nic['Lake Stevens'][1] = 'Cavalero';
nic['Lake Stevens'][2] = 'Crossings';
nic['Lake Stevens'][3] = 'Downtown Lk Stevens';
nic['Lake Stevens'][4] = 'East Everett';
nic['Lake Stevens'][5] = 'East Lake Stevens';
nic['Lake Stevens'][6] = 'Everett';
nic['Lake Stevens'][7] = 'Frontier Air Park';
nic['Lake Stevens'][8] = 'Getchell';
nic['Lake Stevens'][9] = 'Getchell Hill';
nic['Lake Stevens'][10] = 'Granite Falls';
nic['Lake Stevens'][11] = 'Hartford';
nic['Lake Stevens'][12] = 'Inglewood';
nic['Lake Stevens'][13] = 'Lake Bosworth';
nic['Lake Stevens'][14] = 'Lake Cassidy';
nic['Lake Stevens'][15] = 'Lake Serene';
nic['Lake Stevens'][16] = 'Lake Stevens';
nic['Lake Stevens'][17] = 'Lakeview Crest';
nic['Lake Stevens'][18] = 'Lochsloy';
nic['Lake Stevens'][19] = 'Long Bay';
nic['Lake Stevens'][20] = 'Lundeen Park';
nic['Lake Stevens'][21] = 'Lynnwood';
nic['Lake Stevens'][22] = 'Machias';
nic['Lake Stevens'][23] = 'Marysville';
nic['Lake Stevens'][24] = 'Mission Ridge';
nic['Lake Stevens'][25] = 'North Everett';
nic['Lake Stevens'][26] = 'North Lake Stevens';
nic['Lake Stevens'][27] = 'Pilchuck River';
nic['Lake Stevens'][28] = 'Reserve/Lake Pt';
nic['Lake Stevens'][29] = 'Rhodora Heights';
nic['Lake Stevens'][30] = 'Snohomish';
nic['Lake Stevens'][31] = 'Soper Hill';
nic['Lake Stevens'][32] = 'South Lk Stevens';
nic['Lake Stevens'][33] = 'Sunnyside';
nic['Lake Stevens'][34] = 'The Parks';
nic['Lake Stevens'][35] = 'Timberlake';
nic['Lake Stevens'][36] = 'View Ridge';
nic['Lake Stevens'][37] = 'Walker Hill';
nic['Lake Stevens'][38] = 'Willow Run';
nic['Lake Tapps'] = new Array();
nic['Lake Tapps'][0] = 'Auburn';
nic['Lake Tapps'][1] = 'Bonney Lake';
nic['Lake Tapps'][2] = 'Bridlecreek';
nic['Lake Tapps'][3] = 'Dieringer';
nic['Lake Tapps'][4] = 'Driftwood Point';
nic['Lake Tapps'][5] = 'East Of Lake Tapps';
nic['Lake Tapps'][6] = 'Grandview';
nic['Lake Tapps'][7] = 'Inlet Island';
nic['Lake Tapps'][8] = 'Lake Tapps';
nic['Lake Tapps'][9] = 'Lakeland';
nic['Lake Tapps'][10] = 'Lakeridge';
nic['Lake Tapps'][11] = 'Ne Lake Tapps';
nic['Lake Tapps'][12] = 'Nw Lake Tapps';
nic['Lake Tapps'][13] = 'South Auburn';
nic['Lake Tapps'][14] = 'Sumner';
nic['Lake Tapps'][15] = 'Sw Lake Tapps';
nic['Lake Tapps'][16] = 'Tapps Island';
nic['Lakebay'] = new Array();
nic['Lakebay'][0] = 'Filucy Bay';
nic['Lakebay'][1] = 'Gig Harbor';
nic['Lakebay'][2] = 'Glen Cove';
nic['Lakebay'][3] = 'Herron Island';
nic['Lakebay'][4] = 'Home';
nic['Lakebay'][5] = 'Key Center';
nic['Lakebay'][6] = 'Key Peninsula';
nic['Lakebay'][7] = 'Key Peninsula North';
nic['Lakebay'][8] = 'Key Peninsula South';
nic['Lakebay'][9] = 'Lakebay';
nic['Lakebay'][10] = 'Longbranch';
nic['Lakebay'][11] = 'Palmer Lake';
nic['Lakebay'][12] = 'Peninsula';
nic['Lakebay'][13] = 'Vaughn';
nic['Lakewood'] = new Array();
nic['Lakewood'][0] = 'American Lake';
nic['Lakewood'][1] = 'Clover Park';
nic['Lakewood'][2] = 'Creekside';
nic['Lakewood'][3] = 'Fern Hill';
nic['Lakewood'][4] = 'Gravelly Lake';
nic['Lakewood'][5] = 'Lake City';
nic['Lakewood'][6] = 'Lake Louise';
nic['Lakewood'][7] = 'Lake Steilacoom';
nic['Lakewood'][8] = 'Lakeview';
nic['Lakewood'][9] = 'Lakewood';
nic['Lakewood'][10] = 'Mccord Air Force Base';
nic['Lakewood'][11] = 'Oakbrook';
nic['Lakewood'][12] = 'South Tacoma';
nic['Lakewood'][13] = 'Steilacoom';
nic['Lakewood'][14] = 'Tacoma';
nic['Lakewood'][15] = 'Tillicum';
nic['Lakewood'][16] = 'University Place';
nic['Lamont'] = new Array();
nic['Lamont'][0] = 'Sprague';
nic['Langley'] = new Array();
nic['Langley'][0] = 'Baby Island';
nic['Langley'][1] = 'Bayview';
nic['Langley'][2] = 'Bells Beach';
nic['Langley'][3] = 'Beverly Beach';
nic['Langley'][4] = 'Clinton';
nic['Langley'][5] = 'Double Bluff';
nic['Langley'][6] = 'Freeland';
nic['Langley'][7] = 'Goss Lake';
nic['Langley'][8] = 'Langley';
nic['Langley'][9] = 'Lone Lake';
nic['Langley'][10] = 'Maxwelton';
nic['Langley'][11] = 'Possession';
nic['Langley'][12] = 'Sandy Hook';
nic['Langley'][13] = 'Sandy Point';
nic['Langley'][14] = 'Saratoga';
nic['Langley'][15] = 'Useless Bay';
nic['Langley'][16] = 'Whidbey Shores';
nic['Laurier'] = new Array();
nic['Laurier'][0] = 'Orient';
nic['Leavenworth'] = new Array();
nic['Leavenworth'][0] = 'Chumstick';
nic['Leavenworth'][1] = 'Leavenworth';
nic['Leavenworth'][2] = 'Plain';
nic['Leavenworth'][3] = 'Telma';
nic['Leavenworth'][4] = 'Wenatchee';
nic['Lebam'] = new Array();
nic['Lebam'][0] = 'Lebam';
nic['Liberty Lake'] = new Array();
nic['Liberty Lake'][0] = 'Liberty Park';
nic['Liberty Lake'][1] = 'Spokane';
nic['Lilliwaup'] = new Array();
nic['Lilliwaup'][0] = 'Ayock';
nic['Lilliwaup'][1] = 'Beacon Point';
nic['Lilliwaup'][2] = 'Colony Surf';
nic['Lilliwaup'][3] = 'Eldon';
nic['Lilliwaup'][4] = 'Hood Canal';
nic['Lilliwaup'][5] = 'Lake Cushman';
nic['Lilliwaup'][6] = 'Lilliwaup';
nic['Lincoln'] = new Array();
nic['Lincoln'][0] = 'Creston';
nic['Lincoln'][1] = 'Roosevelt Lake Ranch';
nic['Lind'] = new Array();
nic['Lind'][0] = 'Lind';
nic['Little Rock'] = new Array();
nic['Little Rock'][0] = 'Littlerock';
nic['Long Beach'] = new Array();
nic['Long Beach'][0] = 'Klipsan';
nic['Long Beach'][1] = 'Long Beach';
nic['Long Beach'][2] = 'Ocean Park';
nic['Long Beach'][3] = 'Oceanview';
nic['Long Beach'][4] = 'Seaview';
nic['Long Beach'][5] = 'Sunset Sands';
nic['Long Beach'][6] = 'Tides West';
nic['Longbranch'] = new Array();
nic['Longbranch'][0] = 'Filucy Bay';
nic['Longbranch'][1] = 'Home';
nic['Longbranch'][2] = 'Key Peninsula';
nic['Longbranch'][3] = 'Key Peninsula South';
nic['Longbranch'][4] = 'Lakebay';
nic['Longbranch'][5] = 'Longbranch';
nic['Longbranch'][6] = 'Peninsula';
nic['Longbranch'][7] = 'Taylor Bay Area';
nic['Longbranch'][8] = 'Whiteman Cove Area';
nic['Longview'] = new Array();
nic['Longview'][0] = 'Bakers Corner';
nic['Longview'][1] = 'Beacon Hill';
nic['Longview'][2] = 'Broadway';
nic['Longview'][3] = 'Bunker Hill';
nic['Longview'][4] = 'Cascade Way';
nic['Longview'][5] = 'Cathlamet';
nic['Longview'][6] = 'Coal Creek';
nic['Longview'][7] = 'Columbia Heights';
nic['Longview'][8] = 'Columbia Valley Gardens';
nic['Longview'][9] = 'Highlands';
nic['Longview'][10] = 'Hillside';
nic['Longview'][11] = 'Kalama River';
nic['Longview'][12] = 'Kelso';
nic['Longview'][13] = 'Lexington';
nic['Longview'][14] = 'Lone Oak';
nic['Longview'][15] = 'Longview';
nic['Longview'][16] = 'Mint Valley';
nic['Longview'][17] = 'Mt Solo';
nic['Longview'][18] = 'New West Side';
nic['Longview'][19] = 'Northlake';
nic['Longview'][20] = 'Northlake/Terry Taylor';
nic['Longview'][21] = 'Old West Side';
nic['Longview'][22] = 'Olympic';
nic['Longview'][23] = 'Ostrander';
nic['Longview'][24] = 'Pacific Way';
nic['Longview'][25] = 'South Kelso';
nic['Longview'][26] = 'St Helens';
nic['Longview'][27] = 'Sunset Way';
nic['Longview'][28] = 'West Kelso';
nic['Longview'][29] = 'West Longview';
nic['Longview'][30] = 'Willow Grove';
nic['Loomis'] = new Array();
nic['Loomis'][0] = 'Loomis';
nic['Loomis'][1] = 'Palmer Lake';
nic['Loomis'][2] = 'Spectacle';
nic['Loon Lake'] = new Array();
nic['Loon Lake'][0] = 'Deer Lake';
nic['Loon Lake'][1] = 'Long Lake';
nic['Loon Lake'][2] = 'Loon Lake';
nic['Lopez Island'] = new Array();
nic['Lopez Island'][0] = 'Lopez Island';
nic['Lummi Island'] = new Array();
nic['Lummi Island'][0] = 'Lummi Island';
nic['Lyle'] = new Array();
nic['Lyle'][0] = 'Klickitat';
nic['Lyle'][1] = 'Lyle';
nic['Lyman'] = new Array();
nic['Lyman'][0] = 'Lyman';
nic['Lyman'][1] = 'Sedro Woolley';
nic['Lynden'] = new Array();
nic['Lynden'][0] = 'Bellingham';
nic['Lynden'][1] = 'Custer';
nic['Lynden'][2] = 'Everson';
nic['Lynden'][3] = 'Guide Meridian';
nic['Lynden'][4] = 'Lynden';
nic['Lynnwood'] = new Array();
nic['Lynnwood'][0] = 'Alderwood';
nic['Lynnwood'][1] = 'Alderwood Manor';
nic['Lynnwood'][2] = 'Beverly Park';
nic['Lynnwood'][3] = 'Blue Ridge';
nic['Lynnwood'][4] = 'Bothell';
nic['Lynnwood'][5] = 'Brier';
nic['Lynnwood'][6] = 'Brierwood';
nic['Lynnwood'][7] = 'Canyon Park';
nic['Lynnwood'][8] = 'Canyon Ridge';
nic['Lynnwood'][9] = 'Cedar Ridge';
nic['Lynnwood'][10] = 'Cedar Valley';
nic['Lynnwood'][11] = 'Cobblestone';
nic['Lynnwood'][12] = 'Covington';
nic['Lynnwood'][13] = 'Creek View Trails';
nic['Lynnwood'][14] = 'Creekside Park';
nic['Lynnwood'][15] = 'Downtown';
nic['Lynnwood'][16] = 'Downtown - Lynnwood';
nic['Lynnwood'][17] = 'Edmonds';
nic['Lynnwood'][18] = 'Edmonds Comm College';
nic['Lynnwood'][19] = 'Everett';
nic['Lynnwood'][20] = 'Floral Hills';
nic['Lynnwood'][21] = 'Halls Lake';
nic['Lynnwood'][22] = 'Harbour Pointe';
nic['Lynnwood'][23] = 'Hazelwood';
nic['Lynnwood'][24] = 'Hilltop';
nic['Lynnwood'][25] = 'Keeler\'s Corner';
nic['Lynnwood'][26] = 'Lake Serene';
nic['Lynnwood'][27] = 'Lake Stickney';
nic['Lynnwood'][28] = 'Larch/Poplar';
nic['Lynnwood'][29] = 'Logan Park';
nic['Lynnwood'][30] = 'Lynndale Park';
nic['Lynnwood'][31] = 'Lynnwood';
nic['Lynnwood'][32] = 'Madison';
nic['Lynnwood'][33] = 'Maplewood';
nic['Lynnwood'][34] = 'Martha Lake';
nic['Lynnwood'][35] = 'Meadowdale';
nic['Lynnwood'][36] = 'Mill Creek';
nic['Lynnwood'][37] = 'Mountlake Terrace';
nic['Lynnwood'][38] = 'Mukilteo';
nic['Lynnwood'][39] = 'Mukilteo Speedway';
nic['Lynnwood'][40] = 'Ne Mountlake Terrace';
nic['Lynnwood'][41] = 'Norma Beach';
nic['Lynnwood'][42] = 'North Bothell';
nic['Lynnwood'][43] = 'North Lynnwood';
nic['Lynnwood'][44] = 'Paine Field';
nic['Lynnwood'][45] = 'Perrinville';
nic['Lynnwood'][46] = 'Picnic Point';
nic['Lynnwood'][47] = 'Puget Park';
nic['Lynnwood'][48] = 'Queensborough';
nic['Lynnwood'][49] = 'Red Oaks';
nic['Lynnwood'][50] = 'Seattle Heights';
nic['Lynnwood'][51] = 'Seaview';
nic['Lynnwood'][52] = 'Shoreline';
nic['Lynnwood'][53] = 'Snohomish';
nic['Lynnwood'][54] = 'Spruce';
nic['Lynnwood'][55] = 'Thrashers Corner';
nic['Lynnwood'][56] = 'Upper Edmonds';
nic['Lynnwood'][57] = 'Westgate';
nic['Lynnwood'][58] = 'Wilcox Park';
nic['Mabton'] = new Array();
nic['Mabton'][0] = 'Mabton';
nic['Machias'] = new Array();
nic['Machias'][0] = 'Machias';
nic['Malaga'] = new Array();
nic['Malaga'][0] = 'Malaga';
nic['Malaga'][1] = 'Wenatchee';
nic['Malo'] = new Array();
nic['Malo'][0] = 'Curlew';
nic['Malo'][1] = 'Malo';
nic['Malo'][2] = 'Republic';
nic['Malone'] = new Array();
nic['Malone'][0] = 'Elma';
nic['Malone'][1] = 'Elma Rural';
nic['Malone'][2] = 'Malone';
nic['Malone'][3] = 'Malone Hill';
nic['Malone'][4] = 'South Elma';
nic['Malott'] = new Array();
nic['Malott'][0] = 'Chiliwist';
nic['Malott'][1] = 'Malott';
nic['Malott'][2] = 'Monse';
nic['Malott'][3] = 'Okanogan';
nic['Maltby'] = new Array();
nic['Maltby'][0] = 'Echo Lake';
nic['Maltby'][1] = 'High Bridge';
nic['Manchester'] = new Array();
nic['Manchester'][0] = 'Manchester';
nic['Manchester'][1] = 'South Kitsap';
nic['Mansfield'] = new Array();
nic['Mansfield'][0] = 'Chelan';
nic['Mansfield'][1] = 'Chelan Falls';
nic['Mansfield'][2] = 'Mansfield';
nic['Manson'] = new Array();
nic['Manson'][0] = 'Chelan';
nic['Manson'][1] = 'Manson';
nic['Manson'][2] = 'Saska Hills';
nic['Maple Falls'] = new Array();
nic['Maple Falls'][0] = 'Deming';
nic['Maple Falls'][1] = 'Glacier';
nic['Maple Falls'][2] = 'Kendall';
nic['Maple Falls'][3] = 'Maple Falls';
nic['Maple Falls'][4] = 'Mt Baker';
nic['Maple Falls'][5] = 'Nooksack Valley';
nic['Maple Falls'][6] = 'Sumas';
nic['Maple Valley'] = new Array();
nic['Maple Valley'][0] = 'Bellevue';
nic['Maple Valley'][1] = 'Belmont Woods';
nic['Maple Valley'][2] = 'Black Diamond';
nic['Maple Valley'][3] = 'Cedar Downs';
nic['Maple Valley'][4] = 'Cedar River';
nic['Maple Valley'][5] = 'Cherokee Bay';
nic['Maple Valley'][6] = 'Covington';
nic['Maple Valley'][7] = 'Diamond';
nic['Maple Valley'][8] = 'East Maple Valley';
nic['Maple Valley'][9] = 'Elk Run Golf Course';
nic['Maple Valley'][10] = 'Fairwood';
nic['Maple Valley'][11] = 'Fernwood';
nic['Maple Valley'][12] = 'Four Corners';
nic['Maple Valley'][13] = 'Four Lakes';
nic['Maple Valley'][14] = 'Highlands';
nic['Maple Valley'][15] = 'Hobart';
nic['Maple Valley'][16] = 'In Town - Black Diamond';
nic['Maple Valley'][17] = 'Issaquah';
nic['Maple Valley'][18] = 'Katesridge';
nic['Maple Valley'][19] = 'Kennydale';
nic['Maple Valley'][20] = 'Kent';
nic['Maple Valley'][21] = 'Lake Sawyer';
nic['Maple Valley'][22] = 'Lake Webster/Francis';
nic['Maple Valley'][23] = 'Lake Wilderness';
nic['Maple Valley'][24] = 'Lake Youngs';
nic['Maple Valley'][25] = 'Maple Valley';
nic['Maple Valley'][26] = 'Maple Valley Heights';
nic['Maple Valley'][27] = 'May Valley';
nic['Maple Valley'][28] = 'Newcastle';
nic['Maple Valley'][29] = 'Petrovitsky';
nic['Maple Valley'][30] = 'Pipe Lake';
nic['Maple Valley'][31] = 'Pipe Lake/Lake Lucerne';
nic['Maple Valley'][32] = 'Pla-mor';
nic['Maple Valley'][33] = 'Ravensdale';
nic['Maple Valley'][34] = 'Renton';
nic['Maple Valley'][35] = 'Se Renton';
nic['Maple Valley'][36] = 'Shadow Lake';
nic['Maple Valley'][37] = 'Snoqualmie';
nic['Maple Valley'][38] = 'Spring Lake';
nic['Maple Valley'][39] = 'Tiger Mountain';
nic['Maple Valley'][40] = 'Valley Green';
nic['Maple Valley'][41] = 'Wilderness';
nic['Maple Valley'][42] = 'Wilderness Village';
nic['Maple Valley'][43] = 'Wilson Hill';
nic['Marblemount'] = new Array();
nic['Marblemount'][0] = 'Cascade River';
nic['Marblemount'][1] = 'Concrete';
nic['Marblemount'][2] = 'Marblemount';
nic['Marblemount'][3] = 'Rockport';
nic['Marcus'] = new Array();
nic['Marcus'][0] = 'Marcus';
nic['Marlin'] = new Array();
nic['Marlin'][0] = 'Desert Aire';
nic['Marlin'][1] = 'Marlin';
nic['Marlin'][2] = 'Ruff';
nic['Marys Corner'] = new Array();
nic['Marys Corner'][0] = 'Mary\'s Corner';
nic['Marysville'] = new Array();
nic['Marysville'][0] = 'Arlington';
nic['Marysville'][1] = 'Cedarcrest';
nic['Marysville'][2] = 'Central Marysville';
nic['Marysville'][3] = 'Crossings';
nic['Marysville'][4] = 'Downtown';
nic['Marysville'][5] = 'East Everett';
nic['Marysville'][6] = 'East Marysville';
nic['Marysville'][7] = 'Edgecomb';
nic['Marysville'][8] = 'Everett';
nic['Marysville'][9] = 'Firetrail';
nic['Marysville'][10] = 'Getchell';
nic['Marysville'][11] = 'Getchell Hill';
nic['Marysville'][12] = 'Goat Trail';
nic['Marysville'][13] = 'Golf Course';
nic['Marysville'][14] = 'Grandview';
nic['Marysville'][15] = 'Harbor View';
nic['Marysville'][16] = 'In Town';
nic['Marysville'][17] = 'In Town - Marysville';
nic['Marysville'][18] = 'Jennings Park';
nic['Marysville'][19] = 'John Sam Lake';
nic['Marysville'][20] = 'Kayak Point';
nic['Marysville'][21] = 'Kellogg Village';
nic['Marysville'][22] = 'Lake Cassidy';
nic['Marysville'][23] = 'Lake Goodwin';
nic['Marysville'][24] = 'Lake Stevens';
nic['Marysville'][25] = 'Lakewood';
nic['Marysville'][26] = 'Lauck Hill';
nic['Marysville'][27] = 'Marine Drive';
nic['Marysville'][28] = 'Marysville';
nic['Marysville'][29] = 'Marysville Pilchuck';
nic['Marysville'][30] = 'Mill Creek';
nic['Marysville'][31] = 'North Arlington';
nic['Marysville'][32] = 'North Everett';
nic['Marysville'][33] = 'North Lake Stevens';
nic['Marysville'][34] = 'North Marysville';
nic['Marysville'][35] = 'On The Hill';
nic['Marysville'][36] = 'Pinewood';
nic['Marysville'][37] = 'Port Susan';
nic['Marysville'][38] = 'Priest Point';
nic['Marysville'][39] = 'Seven Lakes';
nic['Marysville'][40] = 'Shoultes';
nic['Marysville'][41] = 'Sisco Heights';
nic['Marysville'][42] = 'Smokey Point';
nic['Marysville'][43] = 'Snohomish';
nic['Marysville'][44] = 'Soper Hill';
nic['Marysville'][45] = 'South Everett';
nic['Marysville'][46] = 'South Marysville';
nic['Marysville'][47] = 'Squak Mountain';
nic['Marysville'][48] = 'Sunny Shores';
nic['Marysville'][49] = 'Sunnyside';
nic['Marysville'][50] = 'Tulalip';
nic['Marysville'][51] = 'Tulalip Bay';
nic['Marysville'][52] = 'Tulalip Shores';
nic['Marysville'][53] = 'Tulare Beach';
nic['Marysville'][54] = 'Turk Road';
nic['Marysville'][55] = 'Valley View';
nic['Marysville'][56] = 'West Marysville';
nic['Marysville'][57] = 'Westview';
nic['Marysville'][58] = 'Whiskey Ridge';
nic['Matlock'] = new Array();
nic['Matlock'][0] = 'Matlock';
nic['Mattawa'] = new Array();
nic['Mattawa'][0] = 'Desert Aire';
nic['Mattawa'][1] = 'Mattawa';
nic['Mattawa'][2] = 'Othello';
nic['Mattawa'][3] = 'Royal City';
nic['Maytown'] = new Array();
nic['Maytown'][0] = 'Maytown';
nic['Mazama'] = new Array();
nic['Mazama'][0] = 'Edelweiss';
nic['Mazama'][1] = 'Lost River';
nic['Mazama'][2] = 'Mazama';
nic['Mazama'][3] = 'Winthrop';
nic['McCleary'] = new Array();
nic['McCleary'][0] = 'East McCleary';
nic['McCleary'][1] = 'McCleary';
nic['McCleary'][2] = 'Nw McCleary';
nic['McCleary'][3] = 'Sw McCleary';
nic['McKenna'] = new Array();
nic['McKenna'][0] = 'Harts Lake';
nic['McKenna'][1] = 'McKenna';
nic['McKenna'][2] = 'Roy';
nic['McKenna'][3] = 'Yelm';
nic['Mead'] = new Array();
nic['Mead'][0] = 'Green Bluff';
nic['Mead'][1] = 'Spokane';
nic['Medina'] = new Array();
nic['Medina'][0] = 'Evergreen Point';
nic['Medina'][1] = 'Medina';
nic['Medina'][2] = 'Meydenbauer';
nic['Medina'][3] = 'West Bellevue';
nic['Menlo'] = new Array();
nic['Menlo'][0] = 'Menlo';
nic['Menlo'][1] = 'Pe Ell';
nic['Menlo'][2] = 'Raymond';
nic['Mercer Island'] = new Array();
nic['Mercer Island'][0] = 'Allview Heights';
nic['Mercer Island'][1] = 'Beach Club';
nic['Mercer Island'][2] = 'Bellevue';
nic['Mercer Island'][3] = 'Brook Bay';
nic['Mercer Island'][4] = 'Dawn Vista';
nic['Mercer Island'][5] = 'Downtown';
nic['Mercer Island'][6] = 'East Mercer';
nic['Mercer Island'][7] = 'East Seattle';
nic['Mercer Island'][8] = 'Eastside';
nic['Mercer Island'][9] = 'Ellis Pond';
nic['Mercer Island'][10] = 'Faben Point';
nic['Mercer Island'][11] = 'Ferncroft';
nic['Mercer Island'][12] = 'First Hill';
nic['Mercer Island'][13] = 'Groveland';
nic['Mercer Island'][14] = 'Island Point';
nic['Mercer Island'][15] = 'Island Terrace';
nic['Mercer Island'][16] = 'Library';
nic['Mercer Island'][17] = 'Lucas Hill';
nic['Mercer Island'][18] = 'Madison Park';
nic['Mercer Island'][19] = 'Madrona Crest';
nic['Mercer Island'][20] = 'Mercer Island';
nic['Mercer Island'][21] = 'Mercer Island Estates';
nic['Mercer Island'][22] = 'Mercer Ridge';
nic['Mercer Island'][23] = 'Mercerdale';
nic['Mercer Island'][24] = 'Mercerwood';
nic['Mercer Island'][25] = 'Mid Island';
nic['Mercer Island'][26] = 'North End';
nic['Mercer Island'][27] = 'Seattle';
nic['Mercer Island'][28] = 'South End';
nic['Mercer Island'][29] = 'Tarywood';
nic['Mercer Island'][30] = 'The Lakes';
nic['Mercer Island'][31] = 'West Mercer';
nic['Mercer Island'][32] = 'Westside';
nic['Mesa'] = new Array();
nic['Mesa'][0] = 'Basin City';
nic['Mesa'][1] = 'Connell';
nic['Metaline'] = new Array();
nic['Metaline'][0] = 'Metaline';
nic['Metaline Falls'] = new Array();
nic['Metaline Falls'][0] = 'Metaline Falls';
nic['Methow'] = new Array();
nic['Methow'][0] = 'Methow';
nic['Methow'][1] = 'Okanogan';
nic['Methow'][2] = 'Pateros';
nic['Mill Creek'] = new Array();
nic['Mill Creek'][0] = 'Bothell';
nic['Mill Creek'][1] = 'Country Club';
nic['Mill Creek'][2] = 'Everett';
nic['Mill Creek'][3] = 'Evergreen';
nic['Mill Creek'][4] = 'Fairway';
nic['Mill Creek'][5] = 'Highlands';
nic['Mill Creek'][6] = 'Hyde Park';
nic['Mill Creek'][7] = 'Martha Lake';
nic['Mill Creek'][8] = 'Mill Creek';
nic['Mill Creek'][9] = 'Mill Creek Country Club';
nic['Mill Creek'][10] = 'North Creek';
nic['Mill Creek'][11] = 'Seattle Hill';
nic['Mill Creek'][12] = 'Snohomish';
nic['Mill Creek'][13] = 'The Highlands';
nic['Mill Creek'][14] = 'The Parks';
nic['Mill Creek'][15] = 'Thomas Lake';
nic['Milton'] = new Array();
nic['Milton'][0] = 'Edgewood';
nic['Milton'][1] = 'Federal Way';
nic['Milton'][2] = 'Fife Heights';
nic['Milton'][3] = 'Lower Milton';
nic['Milton'][4] = 'Milton';
nic['Milton'][5] = 'Milton Heights';
nic['Milton'][6] = 'North Milton';
nic['Milton'][7] = 'S Federal Way';
nic['Milton'][8] = 'Surprise Lake';
nic['Milton'][9] = 'Tacoma';
nic['Mineral'] = new Array();
nic['Mineral'][0] = 'Alder Lake';
nic['Mineral'][1] = 'Eatonville';
nic['Mineral'][2] = 'Mineral';
nic['Mineral'][3] = 'Mineral Lake';
nic['Mineral'][4] = 'Morton';
nic['Mineral'][5] = 'Mt Rainier';
nic['Moclips'] = new Array();
nic['Moclips'][0] = 'Moclips';
nic['Moclips'][1] = 'Pacific Beach';
nic['Moclips'][2] = 'Taholah';
nic['Monitor'] = new Array();
nic['Monitor'][0] = 'Cashmere';
nic['Monitor'][1] = 'Wenatchee';
nic['Monroe'] = new Array();
nic['Monroe'][0] = 'Ben Howard';
nic['Monroe'][1] = 'Blue Boy Golf Course';
nic['Monroe'][2] = 'Bollenbaugh Hill';
nic['Monroe'][3] = 'Cedar Pond';
nic['Monroe'][4] = 'Cedar Ponds Lake';
nic['Monroe'][5] = 'Chain Lake';
nic['Monroe'][6] = 'Cherry Valley';
nic['Monroe'][7] = 'Downtown';
nic['Monroe'][8] = 'Duvall';
nic['Monroe'][9] = 'Echo Lake';
nic['Monroe'][10] = 'Fern Bluff';
nic['Monroe'][11] = 'Florence Acres';
nic['Monroe'][12] = 'Foothills';
nic['Monroe'][13] = 'Fryelands';
nic['Monroe'][14] = 'Gold Bar';
nic['Monroe'][15] = 'High Bridge';
nic['Monroe'][16] = 'High Rock';
nic['Monroe'][17] = 'Historic';
nic['Monroe'][18] = 'In Town - Monroe';
nic['Monroe'][19] = 'In Town South 522';
nic['Monroe'][20] = 'Ingraham';
nic['Monroe'][21] = 'Lake Cochran';
nic['Monroe'][22] = 'Lake Kayak';
nic['Monroe'][23] = 'Lake Roesiger';
nic['Monroe'][24] = 'Lords Lake';
nic['Monroe'][25] = 'Maltby';
nic['Monroe'][26] = 'Monroe';
nic['Monroe'][27] = 'Monroe Terrace';
nic['Monroe'][28] = 'Mt Forest';
nic['Monroe'][29] = 'Ne Monroe';
nic['Monroe'][30] = 'North Monroe';
nic['Monroe'][31] = 'Old Owen';
nic['Monroe'][32] = 'Riverview';
nic['Monroe'][33] = 'Robinhood';
nic['Monroe'][34] = 'Roosevelt';
nic['Monroe'][35] = 'Running Bear';
nic['Monroe'][36] = 'Skyview/River King';
nic['Monroe'][37] = 'Sno/Monroe';
nic['Monroe'][38] = 'Snohomish';
nic['Monroe'][39] = 'South Monroe';
nic['Monroe'][40] = 'Sultan';
nic['Monroe'][41] = 'Tester Road';
nic['Monroe'][42] = 'Trombley Hill';
nic['Monroe'][43] = 'Wagner Hill';
nic['Monroe'][44] = 'Wagner Lake';
nic['Monroe'][45] = 'West Monroe';
nic['Monroe'][46] = 'West Woodinville';
nic['Monroe'][47] = 'Woodinville';
nic['Monroe'][48] = 'Woods Creek';
nic['Monroe'][49] = 'Woods Lake Rd';
nic['Montesano'] = new Array();
nic['Montesano'][0] = 'Alder Grove';
nic['Montesano'][1] = 'Brady';
nic['Montesano'][2] = 'Clemons Road';
nic['Montesano'][3] = 'East Monte';
nic['Montesano'][4] = 'Grisdale';
nic['Montesano'][5] = 'Melbourne';
nic['Montesano'][6] = 'Monte Hill';
nic['Montesano'][7] = 'Montesano';
nic['Montesano'][8] = 'Satsop';
nic['Montesano'][9] = 'South Monte';
nic['Montesano'][10] = 'South Montesano';
nic['Montesano'][11] = 'Val Vista Terrace';
nic['Montesano'][12] = 'Wynooche';
nic['Morton'] = new Array();
nic['Morton'][0] = 'Alder Lake';
nic['Morton'][1] = 'Glenoma';
nic['Morton'][2] = 'Morton';
nic['Moses Lake'] = new Array();
nic['Moses Lake'][0] = 'Adrian';
nic['Moses Lake'][1] = 'Barrington Point';
nic['Moses Lake'][2] = 'Basin Homes';
nic['Moses Lake'][3] = 'Bayview Heights';
nic['Moses Lake'][4] = 'Block 40';
nic['Moses Lake'][5] = 'Broadripple';
nic['Moses Lake'][6] = 'Broadway Estates';
nic['Moses Lake'][7] = 'Broadway Extended';
nic['Moses Lake'][8] = 'Cascade Valley';
nic['Moses Lake'][9] = 'College Heights';
nic['Moses Lake'][10] = 'Country Club';
nic['Moses Lake'][11] = 'Cove West';
nic['Moses Lake'][12] = 'Crestview';
nic['Moses Lake'][13] = 'Crystal Springs';
nic['Moses Lake'][14] = 'Diamond Point';
nic['Moses Lake'][15] = 'Downtown';
nic['Moses Lake'][16] = 'Dune Lakes';
nic['Moses Lake'][17] = 'Ephrata';
nic['Moses Lake'][18] = 'Ephrata Heights';
nic['Moses Lake'][19] = 'Garden Heights';
nic['Moses Lake'][20] = 'Guffin Eccles';
nic['Moses Lake'][21] = 'Harvest Manor';
nic['Moses Lake'][22] = 'Hayden Estates';
nic['Moses Lake'][23] = 'Hiawatha';
nic['Moses Lake'][24] = 'Hwy 17 South';
nic['Moses Lake'][25] = 'Knolls Vista';
nic['Moses Lake'][26] = 'Laguna';
nic['Moses Lake'][27] = 'Lakeview Terrace';
nic['Moses Lake'][28] = 'Larson';
nic['Moses Lake'][29] = 'Longview';
nic['Moses Lake'][30] = 'Mae Valley';
nic['Moses Lake'][31] = 'Mardon';
nic['Moses Lake'][32] = 'Marina Shores';
nic['Moses Lake'][33] = 'Marine View Heights';
nic['Moses Lake'][34] = 'Marlin';
nic['Moses Lake'][35] = 'McConihe';
nic['Moses Lake'][36] = 'Montlake';
nic['Moses Lake'][37] = 'Moses Lake';
nic['Moses Lake'][38] = 'Neppal';
nic['Moses Lake'][39] = 'O\'Sullivan Shores';
nic['Moses Lake'][40] = 'Odessa';
nic['Moses Lake'][41] = 'Parker Springs';
nic['Moses Lake'][42] = 'Pelican Point';
nic['Moses Lake'][43] = 'Peninsula';
nic['Moses Lake'][44] = 'Port of Ephrata';
nic['Moses Lake'][45] = 'Potholes';
nic['Moses Lake'][46] = 'Quail Run';
nic['Moses Lake'][47] = 'Ridgecrest';
nic['Moses Lake'][48] = 'Ridgeview';
nic['Moses Lake'][49] = 'Ruff';
nic['Moses Lake'][50] = 'Sage Bay';
nic['Moses Lake'][51] = 'Sage Vista';
nic['Moses Lake'][52] = 'Stratford';
nic['Moses Lake'][53] = 'Upper Basin Homes';
nic['Moses Lake'][54] = 'Valley View';
nic['Moses Lake'][55] = 'Vista Village';
nic['Moses Lake'][56] = 'Warden';
nic['Moses Lake'][57] = 'Westlake Shores';
nic['Moses Lake'][58] = 'Westshore';
nic['Moses Lake'][59] = 'Wheeler';
nic['Moses Lake'][60] = 'Wheeler Corridor';
nic['Moses Lake'][61] = 'Wild Goose';
nic['Moses Lake'][62] = 'Wilson Creek';
nic['Mossyrock'] = new Array();
nic['Mossyrock'][0] = 'Chehalis';
nic['Mossyrock'][1] = 'Cinebar';
nic['Mossyrock'][2] = 'Harmony';
nic['Mossyrock'][3] = 'Mary\'s Corner';
nic['Mossyrock'][4] = 'Mayfield Lake';
nic['Mossyrock'][5] = 'Mossyrock';
nic['Mossyrock'][6] = 'Salkum';
nic['Mossyrock'][7] = 'Silver Creek';
nic['Mount Vernon'] = new Array();
nic['Mount Vernon'][0] = 'Allen';
nic['Mount Vernon'][1] = 'Arlington';
nic['Mount Vernon'][2] = 'Avon';
nic['Mount Vernon'][3] = 'Bayview';
nic['Mount Vernon'][4] = 'Big Lake';
nic['Mount Vernon'][5] = 'Blackburn Ridge';
nic['Mount Vernon'][6] = 'Brittwood';
nic['Mount Vernon'][7] = 'Burlington';
nic['Mount Vernon'][8] = 'Cascade Ridge';
nic['Mount Vernon'][9] = 'Cedar Ridge';
nic['Mount Vernon'][10] = 'Clear Lake';
nic['Mount Vernon'][11] = 'College';
nic['Mount Vernon'][12] = 'Colony Grove';
nic['Mount Vernon'][13] = 'Conway';
nic['Mount Vernon'][14] = 'Downtown';
nic['Mount Vernon'][15] = 'Eaglemont';
nic['Mount Vernon'][16] = 'Hillcrest';
nic['Mount Vernon'][17] = 'Hillcrest Park';
nic['Mount Vernon'][18] = 'Hilltop Haven';
nic['Mount Vernon'][19] = 'La Conner';
nic['Mount Vernon'][20] = 'Lake Cavanaugh';
nic['Mount Vernon'][21] = 'Lake McMurray';
nic['Mount Vernon'][22] = 'Little Mountain';
nic['Mount Vernon'][23] = 'Maddox';
nic['Mount Vernon'][24] = 'Meadows';
nic['Mount Vernon'][25] = 'Montborne';
nic['Mount Vernon'][26] = 'Monte Vista Terrace';
nic['Mount Vernon'][27] = 'Mount Vernon';
nic['Mount Vernon'][28] = 'Mt Vernon Hill';
nic['Mount Vernon'][29] = 'Nookachamp Hills';
nic['Mount Vernon'][30] = 'North Stanwood';
nic['Mount Vernon'][31] = 'Northridge';
nic['Mount Vernon'][32] = 'Parkridge';
nic['Mount Vernon'][33] = 'Pleasant Ridge';
nic['Mount Vernon'][34] = 'Riverside';
nic['Mount Vernon'][35] = 'Roosevelt Business Park';
nic['Mount Vernon'][36] = 'Sedro Woolley';
nic['Mount Vernon'][37] = 'Skyridge';
nic['Mount Vernon'][38] = 'Stanwood';
nic['Mount Vernon'][39] = 'Thunderbird';
nic['Mount Vernon'][40] = 'West Mount Vernon';
nic['Mountlake Terrace'] = new Array();
nic['Mountlake Terrace'][0] = 'Alderwood Manor';
nic['Mountlake Terrace'][1] = 'Aurora Village';
nic['Mountlake Terrace'][2] = 'Brier';
nic['Mountlake Terrace'][3] = 'Cedar Ridge';
nic['Mountlake Terrace'][4] = 'Edmonds';
nic['Mountlake Terrace'][5] = 'Halls Lake';
nic['Mountlake Terrace'][6] = 'Kenmore';
nic['Mountlake Terrace'][7] = 'Lake Ballinger';
nic['Mountlake Terrace'][8] = 'Lake Forest Park';
nic['Mountlake Terrace'][9] = 'Larch/Poplar';
nic['Mountlake Terrace'][10] = 'Lynnwood';
nic['Mountlake Terrace'][11] = 'Mountlake Terrace';
nic['Mountlake Terrace'][12] = 'Ne Mountlake Terrace';
nic['Mountlake Terrace'][13] = 'North City';
nic['Mountlake Terrace'][14] = 'Nw Mountlake Terrace';
nic['Mountlake Terrace'][15] = 'Se Mountlake Terrace';
nic['Mountlake Terrace'][16] = 'Seattle';
nic['Mountlake Terrace'][17] = 'Seattle Heights';
nic['Mountlake Terrace'][18] = 'Shoreline';
nic['Mountlake Terrace'][19] = 'Sw Mountlake Terrace';
nic['Moxee'] = new Array();
nic['Moxee'][0] = 'East Valley';
nic['Moxee'][1] = 'Moxee';
nic['Moxee'][2] = 'Yakima';
nic['Mukilteo'] = new Array();
nic['Mukilteo'][0] = 'Beverly Park';
nic['Mukilteo'][1] = 'Chennault Beach';
nic['Mukilteo'][2] = 'Edgewater';
nic['Mukilteo'][3] = 'Edmonds';
nic['Mukilteo'][4] = 'Goat Trail';
nic['Mukilteo'][5] = 'Harbour Pointe';
nic['Mukilteo'][6] = 'Kamiak';
nic['Mukilteo'][7] = 'Lake Serene';
nic['Mukilteo'][8] = 'Lynnwood';
nic['Mukilteo'][9] = 'Mill Creek';
nic['Mukilteo'][10] = 'Mountlake Terrace';
nic['Mukilteo'][11] = 'Mukilteo';
nic['Mukilteo'][12] = 'Mukilteo Blvd';
nic['Mukilteo'][13] = 'Mukilteo Speedway';
nic['Mukilteo'][14] = 'Old Town';
nic['Mukilteo'][15] = 'Olympic View';
nic['Mukilteo'][16] = 'Olympus Terrace';
nic['Mukilteo'][17] = 'Paine Field';
nic['Mukilteo'][18] = 'Picnic Point';
nic['Mukilteo'][19] = 'Possession Bay';
nic['Mukilteo'][20] = 'Possession Ridge';
nic['Mukilteo'][21] = 'Smugglers Cove';
nic['Mukilteo'][22] = 'Snohomish';
nic['Mukilteo'][23] = 'Soundview';
nic['Naches'] = new Array();
nic['Naches'][0] = 'Cliffdell';
nic['Naches'][1] = 'Naches';
nic['Naches'][2] = 'Nile';
nic['Naches'][3] = 'Rimrock';
nic['Naches'][4] = 'White Pass';
nic['Naches'][5] = 'Yakima';
nic['Nahcotta'] = new Array();
nic['Nahcotta'][0] = 'Long Beach';
nic['Nahcotta'][1] = 'Nahcotta';
nic['Nahcotta'][2] = 'Ocean Park';
nic['Napavine'] = new Array();
nic['Napavine'][0] = 'Brookhaven';
nic['Napavine'][1] = 'Chehalis';
nic['Napavine'][2] = 'Evaline';
nic['Napavine'][3] = 'Mary\'s Corner';
nic['Napavine'][4] = 'Napavine';
nic['Naselle'] = new Array();
nic['Naselle'][0] = 'Chinook';
nic['Naselle'][1] = 'Long Beach';
nic['Naselle'][2] = 'Naselle';
nic['Naselle'][3] = 'Rural';
nic['Naselle'][4] = 'Skamania';
nic['Naselle'][5] = 'South Bend';
nic['Neah Bay'] = new Array();
nic['Neah Bay'][0] = 'Hoko';
nic['Neilton'] = new Array();
nic['Neilton'][0] = 'Neilton';
nic['Neilton'][1] = 'Quinault';
nic['Nespelem'] = new Array();
nic['Nespelem'][0] = 'Nespelem';
nic['Newcastle'] = new Array();
nic['Newcastle'][0] = 'Bellevue';
nic['Newcastle'][1] = 'China Creek';
nic['Newcastle'][2] = 'Coal Creek';
nic['Newcastle'][3] = 'Coalfield';
nic['Newcastle'][4] = 'Cougar Mountain';
nic['Newcastle'][5] = 'East Renton';
nic['Newcastle'][6] = 'Kennydale';
nic['Newcastle'][7] = 'Kennydale/New Castle';
nic['Newcastle'][8] = 'Lake Boren';
nic['Newcastle'][9] = 'Lake Washington Ridge';
nic['Newcastle'][10] = 'Lk Washington Crest';
nic['Newcastle'][11] = 'May Valley';
nic['Newcastle'][12] = 'Newcastle';
nic['Newcastle'][13] = 'Newport Hills';
nic['Newcastle'][14] = 'Olympus';
nic['Newcastle'][15] = 'Renton';
nic['Newman Lake'] = new Array();
nic['Newman Lake'][0] = 'Spokane';
nic['Newport'] = new Array();
nic['Newport'][0] = 'Ione';
nic['Newport'][1] = 'Newport';
nic['Newport Hills'] = new Array();
nic['Newport Hills'][0] = 'Newport Hills';
nic['Nine Mile Falls'] = new Array();
nic['Nine Mile Falls'][0] = 'Nine Mile Falls';
nic['Nooksack'] = new Array();
nic['Nooksack'][0] = 'Everson';
nic['Nooksack'][1] = 'Nooksack';
nic['Nooksack'][2] = 'Nooksack Valley';
nic['Nordland'] = new Array();
nic['Nordland'][0] = 'East Marrowstone';
nic['Nordland'][1] = 'Marrowstone Island';
nic['Nordland'][2] = 'Nordland';
nic['Nordland'][3] = 'West Marrowstone';
nic['Normandy Park'] = new Array();
nic['Normandy Park'][0] = 'Des Moines';
nic['Normandy Park'][1] = 'Manhattan';
nic['Normandy Park'][2] = 'Normandy Park';
nic['Normandy Park'][3] = 'Three Tree Point';
nic['Normandy Park'][4] = 'West Seattle';
nic['North Bend'] = new Array();
nic['North Bend'][0] = 'Cedar Falls';
nic['North Bend'][1] = 'Circle River';
nic['North Bend'][2] = 'Cougar Mountain';
nic['North Bend'][3] = 'Downtown - North Bend';
nic['North Bend'][4] = 'East Lake Sammamish';
nic['North Bend'][5] = 'Edgewick';
nic['North Bend'][6] = 'Forster Woods';
nic['North Bend'][7] = 'Harman Heights';
nic['North Bend'][8] = 'Hobart';
nic['North Bend'][9] = 'Issaquah';
nic['North Bend'][10] = 'Lake Sammamish';
nic['North Bend'][11] = 'Middle Fork';
nic['North Bend'][12] = 'Moon Valley';
nic['North Bend'][13] = 'Mt Si';
nic['North Bend'][14] = 'North Bend';
nic['North Bend'][15] = 'Riverbend';
nic['North Bend'][16] = 'Si View';
nic['North Bend'][17] = 'Snoqualmie';
nic['North Bend'][18] = 'Snoqualmie Uplands';
nic['North Bend'][19] = 'South Fork';
nic['North Bend'][20] = 'Tanner';
nic['North Bend'][21] = 'Wilderness Rim';
nic['North Bend'][22] = 'Wood River';
nic['North Bonneville'] = new Array();
nic['North Bonneville'][0] = 'Skamania';
nic['North Bonneville'][1] = 'Stevenson';
nic['North Cove'] = new Array();
nic['North Cove'][0] = 'Grayland';
nic['North Cove'][1] = 'North Cove';
nic['North Cove'][2] = 'Tokeland';
nic['Northport'] = new Array();
nic['Northport'][0] = 'Colville';
nic['Northport'][1] = 'Kettle Falls';
nic['Northport'][2] = 'Northport';
nic['Oak Harbor'] = new Array();
nic['Oak Harbor'][0] = 'Admirals Cove';
nic['Oak Harbor'][1] = 'Anacortes';
nic['Oak Harbor'][2] = 'Ault Field';
nic['Oak Harbor'][3] = 'Central Whidbey';
nic['Oak Harbor'][4] = 'City Of Oak Harbor';
nic['Oak Harbor'][5] = 'Coupeville';
nic['Oak Harbor'][6] = 'Davis Landing';
nic['Oak Harbor'][7] = 'Deception Park View';
nic['Oak Harbor'][8] = 'Dugualla Bay';
nic['Oak Harbor'][9] = 'Evergreen';
nic['Oak Harbor'][10] = 'Highlands';
nic['Oak Harbor'][11] = 'Mariners Cove';
nic['Oak Harbor'][12] = 'North Jones Road';
nic['Oak Harbor'][13] = 'North Whidbey';
nic['Oak Harbor'][14] = 'Northgate Terrace';
nic['Oak Harbor'][15] = 'Oak Harbor';
nic['Oak Harbor'][16] = 'Penn Cove';
nic['Oak Harbor'][17] = 'Polnell Shores';
nic['Oak Harbor'][18] = 'Rolling Hills';
nic['Oak Harbor'][19] = 'San de Fuca';
nic['Oak Harbor'][20] = 'Scenic Heights/Vista';
nic['Oak Harbor'][21] = 'Shadow Glen';
nic['Oak Harbor'][22] = 'Silver Lake';
nic['Oak Harbor'][23] = 'Sky Meadows';
nic['Oak Harbor'][24] = 'Strawberry Point';
nic['Oak Harbor'][25] = 'Sunrise Hill';
nic['Oak Harbor'][26] = 'Sunset Beach';
nic['Oak Harbor'][27] = 'West Beach';
nic['Oak Harbor'][28] = 'Whidbey Golf Cc';
nic['Oak Harbor'][29] = 'Whidbey Island';
nic['Oakville'] = new Array();
nic['Oakville'][0] = 'Capitol Ridge';
nic['Oakville'][1] = 'Cedarville';
nic['Oakville'][2] = 'Chehalis';
nic['Oakville'][3] = 'Elma';
nic['Oakville'][4] = 'Oakville';
nic['Oakville'][5] = 'Rochester';
nic['Obstruction Island'] = new Array();
nic['Obstruction Island'][0] = 'Obstruction Pass';
nic['Obstruction Island'][1] = 'Olga';
nic['Ocean City'] = new Array();
nic['Ocean City'][0] = 'Copalis Beach';
nic['Ocean City'][1] = 'Ocean City';
nic['Ocean City'][2] = 'Ocean Shores';
nic['Ocean Park'] = new Array();
nic['Ocean Park'][0] = 'Bay Center';
nic['Ocean Park'][1] = 'Klipsan';
nic['Ocean Park'][2] = 'Long Beach';
nic['Ocean Park'][3] = 'Ocean Park';
nic['Ocean Park'][4] = 'Oysterville';
nic['Ocean Park'][5] = 'Sunset Sands';
nic['Ocean Park'][6] = 'Surfside';
nic['Ocean Shores'] = new Array();
nic['Ocean Shores'][0] = 'Copalis Beach';
nic['Ocean Shores'][1] = 'Northwest';
nic['Ocean Shores'][2] = 'Ocean City';
nic['Ocean Shores'][3] = 'Ocean Shores';
nic['Ocean Shores'][4] = 'Southeast';
nic['Ocean Shores'][5] = 'Southwest';
nic['Ocosta'] = new Array();
nic['Ocosta'][0] = 'Ocosta';
nic['Ocosta'][1] = 'Westport';
nic['Odessa'] = new Array();
nic['Odessa'][0] = 'Davenport';
nic['Odessa'][1] = 'Odessa';
nic['Okanogan'] = new Array();
nic['Okanogan'][0] = 'Cameron Lake';
nic['Okanogan'][1] = 'Conconully';
nic['Okanogan'][2] = 'Limebelt';
nic['Okanogan'][3] = 'Loup Loup';
nic['Okanogan'][4] = 'Malott';
nic['Okanogan'][5] = 'Okanogan';
nic['Okanogan'][6] = 'Omak';
nic['Olalla'] = new Array();
nic['Olalla'][0] = 'Burley';
nic['Olalla'][1] = 'Colvos Passage';
nic['Olalla'][2] = 'Crescent Valley';
nic['Olalla'][3] = 'East Port Orchard';
nic['Olalla'][4] = 'Fragaria';
nic['Olalla'][5] = 'Gig Harbor North';
nic['Olalla'][6] = 'Olalla';
nic['Olalla'][7] = 'Olalla Highlands';
nic['Olalla'][8] = 'Peacock Hill';
nic['Olalla'][9] = 'Port Orchard';
nic['Olalla'][10] = 'Prospect Point';
nic['Olalla'][11] = 'Purdy';
nic['Olalla'][12] = 'Richmond Point';
nic['Olalla'][13] = 'South Kitsap';
nic['Olympia'] = new Array();
nic['Olympia'][0] = 'Alpine Hills';
nic['Olympia'][1] = 'Aspenwall';
nic['Olympia'][2] = 'Aspinwall';
nic['Olympia'][3] = 'Beachcrest';
nic['Olympia'][4] = 'Beaver Creek';
nic['Olympia'][5] = 'Bigelow';
nic['Olympia'][6] = 'Black Lake';
nic['Olympia'][7] = 'Boston Harbor';
nic['Olympia'][8] = 'Boyds';
nic['Olympia'][9] = 'Bush Prairie';
nic['Olympia'][10] = 'Capital Campus';
nic['Olympia'][11] = 'Capital City Golf';
nic['Olympia'][12] = 'Carlyon';
nic['Olympia'][13] = 'Carlyon Beach';
nic['Olympia'][14] = 'Central Lacey';
nic['Olympia'][15] = 'Chambers/East';
nic['Olympia'][16] = 'Cooper Point';
nic['Olympia'][17] = 'Country Club';
nic['Olympia'][18] = 'Delphi';
nic['Olympia'][19] = 'Delphi Country Club';
nic['Olympia'][20] = 'East Bay';
nic['Olympia'][21] = 'East Olympia';
nic['Olympia'][22] = 'Eastside Olympia';
nic['Olympia'][23] = 'Evergreen Valley';
nic['Olympia'][24] = 'Fishtrap';
nic['Olympia'][25] = 'Gate';
nic['Olympia'][26] = 'Goldcreek';
nic['Olympia'][27] = 'Gravelly Beach';
nic['Olympia'][28] = 'Green Cove';
nic['Olympia'][29] = 'Gull Harbor';
nic['Olympia'][30] = 'Hawks Prairie';
nic['Olympia'][31] = 'Henderson Inlet';
nic['Olympia'][32] = 'Hewitt Lake';
nic['Olympia'][33] = 'Hicks Lake';
nic['Olympia'][34] = 'Hunter Point';
nic['Olympia'][35] = 'Indian Summer';
nic['Olympia'][36] = 'Johnson Point';
nic['Olympia'][37] = 'Jubilee';
nic['Olympia'][38] = 'Kelly\'s Corner';
nic['Olympia'][39] = 'Ken Lake';
nic['Olympia'][40] = 'Lacey';
nic['Olympia'][41] = 'Lake Forest';
nic['Olympia'][42] = 'Lake Forrest';
nic['Olympia'][43] = 'Lake St Clair';
nic['Olympia'][44] = 'Lancaster';
nic['Olympia'][45] = 'Littlerock';
nic['Olympia'][46] = 'Long Lake East';
nic['Olympia'][47] = 'Long Lake West';
nic['Olympia'][48] = 'Madrona Beach';
nic['Olympia'][49] = 'Madrona Park';
nic['Olympia'][50] = 'Maytown';
nic['Olympia'][51] = 'McAllister Park';
nic['Olympia'][52] = 'Meadows';
nic['Olympia'][53] = 'Meridian';
nic['Olympia'][54] = 'Mottman';
nic['Olympia'][55] = 'Mudd Bay';
nic['Olympia'][56] = 'Nisqually';
nic['Olympia'][57] = 'Offut Lake';
nic['Olympia'][58] = 'Olympia';
nic['Olympia'][59] = 'Oyster Bay';
nic['Olympia'][60] = 'Pattison Lake';
nic['Olympia'][61] = 'Rochester';
nic['Olympia'][62] = 'Rural';
nic['Olympia'][63] = 'Scott Lake';
nic['Olympia'][64] = 'South Bay';
nic['Olympia'][65] = 'South Eastside Olympia';
nic['Olympia'][66] = 'Steamboat Island';
nic['Olympia'][67] = 'Steilacoom Heights';
nic['Olympia'][68] = 'Summit Lake';
nic['Olympia'][69] = 'Sunwood Lakes';
nic['Olympia'][70] = 'Tanglewilde';
nic['Olympia'][71] = 'Tenino';
nic['Olympia'][72] = 'Thompson Place';
nic['Olympia'][73] = 'Tumwater';
nic['Olympia'][74] = 'Tumwater Hill';
nic['Olympia'][75] = 'Union Mills';
nic['Olympia'][76] = 'Waddell Creek';
nic['Olympia'][77] = 'Waddle Creek';
nic['Olympia'][78] = 'Ward Lake';
nic['Olympia'][79] = 'Westside';
nic['Omak'] = new Array();
nic['Omak'][0] = 'East Omak';
nic['Omak'][1] = 'North Omak Flat';
nic['Omak'][2] = 'Okanogan';
nic['Omak'][3] = 'Omak';
nic['Omak'][4] = 'Omak Lake';
nic['Omak'][5] = 'Pogue Flat';
nic['Omak'][6] = 'Riverside';
nic['Onalaska'] = new Array();
nic['Onalaska'][0] = 'Chehalis';
nic['Onalaska'][1] = 'Cinebar';
nic['Onalaska'][2] = 'Ethel';
nic['Onalaska'][3] = 'Mayfield Lake';
nic['Onalaska'][4] = 'Onalaska';
nic['Onalaska'][5] = 'Quiet Acres';
nic['Onalaska'][6] = 'Salkum';
nic['Orcas Island'] = new Array();
nic['Orcas Island'][0] = 'Deer Harbor';
nic['Orcas Island'][1] = 'Doe Bay';
nic['Orcas Island'][2] = 'Doebay';
nic['Orcas Island'][3] = 'Eagle Lake';
nic['Orcas Island'][4] = 'Eastsound';
nic['Orcas Island'][5] = 'Obstruction';
nic['Orcas Island'][6] = 'Obstruction Pass';
nic['Orcas Island'][7] = 'Olga';
nic['Orcas Island'][8] = 'Orcas';
nic['Orcas Island'][9] = 'Orcas Island';
nic['Orcas Island'][10] = 'Other Islands';
nic['Orcas Island'][11] = 'Rosario Highlands';
nic['Orcas Island'][12] = 'Shaw Island';
nic['Orcas Island'][13] = 'Westsound';
nic['Orient'] = new Array();
nic['Orient'][0] = 'Orient';
nic['Orondo'] = new Array();
nic['Orondo'][0] = 'Chelan';
nic['Orondo'][1] = 'Lynden';
nic['Orondo'][2] = 'Orondo';
nic['Orondo'][3] = 'Waterville';
nic['Oroville'] = new Array();
nic['Oroville'][0] = 'Chesaw';
nic['Oroville'][1] = 'Curlew';
nic['Oroville'][2] = 'Ellisford';
nic['Oroville'][3] = 'Ellisforde';
nic['Oroville'][4] = 'Havillah';
nic['Oroville'][5] = 'Loomis';
nic['Oroville'][6] = 'Molson';
nic['Oroville'][7] = 'Mount Hull';
nic['Oroville'][8] = 'Nighthawk';
nic['Oroville'][9] = 'Okanogan';
nic['Oroville'][10] = 'Oroville';
nic['Oroville'][11] = 'Tonasket';
nic['Oroville'][12] = 'Toroda Creek';
nic['Oroville'][13] = 'Wannacut';
nic['Orting'] = new Array();
nic['Orting'][0] = 'Crocker';
nic['Orting'][1] = 'Graham';
nic['Orting'][2] = 'High Cedars Gc';
nic['Orting'][3] = 'In Town';
nic['Orting'][4] = 'Kapowsin';
nic['Orting'][5] = 'McMillen';
nic['Orting'][6] = 'McMillin';
nic['Orting'][7] = 'Orting';
nic['Orting'][8] = 'Prairie Ridge';
nic['Orting'][9] = 'Puyallup';
nic['Orting'][10] = 'Puyallup Valley';
nic['Orting'][11] = 'Riverview/Bend';
nic['Orting'][12] = 'Rural';
nic['Orting'][13] = 'South Hill';
nic['Orting'][14] = 'South Orting';
nic['Orting'][15] = 'South Prairie';
nic['Orting'][16] = 'Sumner';
nic['Orting'][17] = 'Sumner Valley';
nic['Orting'][18] = 'Twin Rivers';
nic['Orting'][19] = 'Village Green';
nic['Orting'][20] = 'White Hawk';
nic['Othello'] = new Array();
nic['Othello'][0] = 'Benton';
nic['Othello'][1] = 'Frenchman Hill';
nic['Othello'][2] = 'Hwy 17 South';
nic['Othello'][3] = 'Mardon';
nic['Othello'][4] = 'Marine View Heights';
nic['Othello'][5] = 'O\'Sullivan Shores';
nic['Othello'][6] = 'Othello';
nic['Othello'][7] = 'Potholes';
nic['Othello'][8] = 'Royal City';
nic['Out Of Area'] = new Array();
nic['Out Of Area'][0] = 'Pe Ell';
nic['Outlook'] = new Array();
nic['Outlook'][0] = 'Outlook';
nic['Outlook'][1] = 'Sunnyside';
nic['Oyhut'] = new Array();
nic['Oyhut'][0] = 'Ocean Shores';
nic['Oysterville'] = new Array();
nic['Oysterville'][0] = 'Ocean Park';
nic['Oysterville'][1] = 'Oysterville';
nic['Pacific'] = new Array();
nic['Pacific'][0] = 'Algona';
nic['Pacific'][1] = 'Auburn';
nic['Pacific'][2] = 'Cedar Park';
nic['Pacific'][3] = 'Hillmans';
nic['Pacific'][4] = 'Pacific';
nic['Pacific'][5] = 'Sumner';
nic['Pacific'][6] = 'Super Mall';
nic['Pacific'][7] = 'West Auburn';
nic['Pacific'][8] = 'West Cedar Glen';
nic['Pacific'][9] = 'White River/Park';
nic['Pacific Beach'] = new Array();
nic['Pacific Beach'][0] = 'Ocean Shores';
nic['Pacific Beach'][1] = 'Pacific Beach';
nic['Packwood'] = new Array();
nic['Packwood'][0] = 'High Valley';
nic['Packwood'][1] = 'Morton';
nic['Packwood'][2] = 'Packwood';
nic['Packwood'][3] = 'Randle';
nic['Packwood'][4] = 'Timberline';
nic['Packwood'][5] = 'Trails End';
nic['Palisades'] = new Array();
nic['Palisades'][0] = 'East Wenatchee';
nic['Palisades'][1] = 'Farmer';
nic['Palisades'][2] = 'Rimrock';
nic['Parkland'] = new Array();
nic['Parkland'][0] = 'Brookdale';
nic['Parkland'][1] = 'Fern Hill';
nic['Parkland'][2] = 'Midland';
nic['Parkland'][3] = 'Parkland';
nic['Parkland'][4] = 'Spanaway';
nic['Parkland'][5] = 'Summit';
nic['Parkland'][6] = 'Tacoma';
nic['Pasco'] = new Array();
nic['Pasco'][0] = 'Othello';
nic['Pasco'][1] = 'Pasco';
nic['Pateros'] = new Array();
nic['Pateros'][0] = 'Azwell';
nic['Pateros'][1] = 'Black Canyon';
nic['Pateros'][2] = 'Brewster';
nic['Pateros'][3] = 'Methow';
nic['Pateros'][4] = 'Pateros';
nic['Pe Ell'] = new Array();
nic['Pe Ell'][0] = 'Adna';
nic['Pe Ell'][1] = 'Doty';
nic['Pe Ell'][2] = 'Pe Ell';
nic['Pearl Island'] = new Array();
nic['Pearl Island'][0] = 'Henry Island';
nic['Pearl Island'][1] = 'Pearl Island';
nic['Pearl Island'][2] = 'Roche Harbor';
nic['Peshastin'] = new Array();
nic['Peshastin'][0] = 'Blewett';
nic['Peshastin'][1] = 'Leavenworth';
nic['Peshastin'][2] = 'Peshastin';
nic['Point Roberts'] = new Array();
nic['Point Roberts'][0] = 'Birch Bay';
nic['Point Roberts'][1] = 'Pt Roberts';
nic['Pomeroy'] = new Array();
nic['Pomeroy'][0] = 'Pomeroy';
nic['Port Angeles'] = new Array();
nic['Port Angeles'][0] = '710-Other West';
nic['Port Angeles'][1] = '711-Piedmont';
nic['Port Angeles'][2] = '712-Joyce';
nic['Port Angeles'][3] = '713-Elwha';
nic['Port Angeles'][4] = '714-Eden';
nic['Port Angeles'][5] = '715-Black Diamond';
nic['Port Angeles'][6] = '716-Clark';
nic['Port Angeles'][7] = '717-Mt. Angeles';
nic['Port Angeles'][8] = '720-NW Port Angeles';
nic['Port Angeles'][9] = '721-CW Port Angeles';
nic['Port Angeles'][10] = '722-CE Port Angeles';
nic['Port Angeles'][11] = '723-NE Port Angeles';
nic['Port Angeles'][12] = '724-SW Port Angeles';
nic['Port Angeles'][13] = '725-SE Port Angeles';
nic['Port Angeles'][14] = '734-North Belleview';
nic['Port Angeles'][15] = '735-South Belleview';
nic['Port Angeles'][16] = '736-Mount Pleasant';
nic['Port Angeles'][17] = '736-Mount Pleasent';
nic['Port Angeles'][18] = '737-West Fairview';
nic['Port Angeles'][19] = '738-East Fairview';
nic['Port Angeles'][20] = '739-Blue Mountain';
nic['Port Angeles'][21] = '744-Monterra';
nic['Port Angeles'][22] = '744-Moterro';
nic['Port Angeles'][23] = '745-Agnew';
nic['Port Angeles'][24] = '752-West Dungeness';
nic['Port Angeles'][25] = '777-NW Sequim';
nic['Port Angeles'][26] = 'Agate Beach';
nic['Port Angeles'][27] = 'Crescent Beach';
nic['Port Angeles'][28] = 'Dungeness';
nic['Port Angeles'][29] = 'Forks';
nic['Port Angeles'][30] = 'Lake Crescent';
nic['Port Angeles'][31] = 'Maple Grove';
nic['Port Angeles'][32] = 'Sappho';
nic['Port Angeles'][33] = 'Sequim';
nic['Port Gamble'] = new Array();
nic['Port Gamble'][0] = 'Kingston';
nic['Port Gamble'][1] = 'Lofall';
nic['Port Hadlock'] = new Array();
nic['Port Hadlock'][0] = 'Center';
nic['Port Hadlock'][1] = 'Chimacum';
nic['Port Hadlock'][2] = 'Chimacum Creek';
nic['Port Hadlock'][3] = 'Irondale';
nic['Port Hadlock'][4] = 'Oak Bay';
nic['Port Hadlock'][5] = 'Port Hadlock';
nic['Port Hadlock'][6] = 'Port Townsend';
nic['Port Hadlock'][7] = 'Rhody Drive';
nic['Port Ludlow'] = new Array();
nic['Port Ludlow'][0] = 'Beaver Valley';
nic['Port Ludlow'][1] = 'Bridgehaven';
nic['Port Ludlow'][2] = 'Center';
nic['Port Ludlow'][3] = 'Coyle';
nic['Port Ludlow'][4] = 'Dabob';
nic['Port Ludlow'][5] = 'Hoods Head';
nic['Port Ludlow'][6] = 'Larsen Lake';
nic['Port Ludlow'][7] = 'Larson Lake';
nic['Port Ludlow'][8] = 'Mats Mats';
nic['Port Ludlow'][9] = 'North Bay';
nic['Port Ludlow'][10] = 'Oak Bay';
nic['Port Ludlow'][11] = 'Port Ludlow';
nic['Port Ludlow'][12] = 'Shine';
nic['Port Ludlow'][13] = 'South Bay';
nic['Port Ludlow'][14] = 'Tala Shores';
nic['Port Ludlow'][15] = 'Timberton';
nic['Port Orchard'] = new Array();
nic['Port Orchard'][0] = 'Annapolis';
nic['Port Orchard'][1] = 'Bethel';
nic['Port Orchard'][2] = 'Burley';
nic['Port Orchard'][3] = 'Carney Lake';
nic['Port Orchard'][4] = 'Cedar Canyon';
nic['Port Orchard'][5] = 'Colby';
nic['Port Orchard'][6] = 'Colchester';
nic['Port Orchard'][7] = 'Eaglecrest';
nic['Port Orchard'][8] = 'East Port Orchard';
nic['Port Orchard'][9] = 'Fernwood';
nic['Port Orchard'][10] = 'Fragaria';
nic['Port Orchard'][11] = 'Gig Harbor';
nic['Port Orchard'][12] = 'Gig Harbor North';
nic['Port Orchard'][13] = 'Glenwood';
nic['Port Orchard'][14] = 'Gorst';
nic['Port Orchard'][15] = 'Harper';
nic['Port Orchard'][16] = 'Hidden Creek';
nic['Port Orchard'][17] = 'Horseshoe Lake';
nic['Port Orchard'][18] = 'Key Peninsula North';
nic['Port Orchard'][19] = 'Long Lake';
nic['Port Orchard'][20] = 'Manchester';
nic['Port Orchard'][21] = 'McCormick';
nic['Port Orchard'][22] = 'Minter';
nic['Port Orchard'][23] = 'Minterbrook';
nic['Port Orchard'][24] = 'Olalla';
nic['Port Orchard'][25] = 'Orchard Heights';
nic['Port Orchard'][26] = 'Parkwood';
nic['Port Orchard'][27] = 'Port Orchard';
nic['Port Orchard'][28] = 'Purdy';
nic['Port Orchard'][29] = 'Retsil';
nic['Port Orchard'][30] = 'Sinclair';
nic['Port Orchard'][31] = 'South Colby';
nic['Port Orchard'][32] = 'South Kitsap';
nic['Port Orchard'][33] = 'South Park Village';
nic['Port Orchard'][34] = 'Southworth';
nic['Port Orchard'][35] = 'Sunnyslope';
nic['Port Orchard'][36] = 'View Park';
nic['Port Orchard'][37] = 'Waterman';
nic['Port Orchard'][38] = 'Wauna';
nic['Port Orchard'][39] = 'Wautauga Beach';
nic['Port Orchard'][40] = 'Wicks Lake';
nic['Port Orchard'][41] = 'Wildwood';
nic['Port Orchard'][42] = 'Wye Lake';
nic['Port Townsend'] = new Array();
nic['Port Townsend'][0] = 'Adelma Beach';
nic['Port Townsend'][1] = 'Beckett Point';
nic['Port Townsend'][2] = 'Bell Street';
nic['Port Townsend'][3] = 'Cape George';
nic['Port Townsend'][4] = 'Castle Hill';
nic['Port Townsend'][5] = 'Center';
nic['Port Townsend'][6] = 'Chimacum';
nic['Port Townsend'][7] = 'Chimacum Creek';
nic['Port Townsend'][8] = 'Discovery Bay';
nic['Port Townsend'][9] = 'Eaglemount';
nic['Port Townsend'][10] = 'Fairmount';
nic['Port Townsend'][11] = 'Fort Worden';
nic['Port Townsend'][12] = 'Gardiner';
nic['Port Townsend'][13] = 'Glen Cove';
nic['Port Townsend'][14] = 'Hamilton Heights';
nic['Port Townsend'][15] = 'Irondale';
nic['Port Townsend'][16] = 'Kala Point';
nic['Port Townsend'][17] = 'Marrowstone Island';
nic['Port Townsend'][18] = 'Mats Mats';
nic['Port Townsend'][19] = 'Middle Point';
nic['Port Townsend'][20] = 'North Beach';
nic['Port Townsend'][21] = 'Ocean Grove';
nic['Port Townsend'][22] = 'Port Hadlock';
nic['Port Townsend'][23] = 'Port Townsend';
nic['Port Townsend'][24] = 'Rhody Drive';
nic['Port Townsend'][25] = 'South of Port Townsend';
nic['Port Townsend'][26] = 'The Colony';
nic['Port Townsend'][27] = 'The Highlands';
nic['Port Townsend'][28] = 'The Village';
nic['Port Townsend'][29] = 'Towne Point';
nic['Port Townsend'][30] = 'Uncas';
nic['Port Townsend'][31] = 'Uptown';
nic['Port Townsend'][32] = 'Water Street';
nic['Poulsbo'] = new Array();
nic['Poulsbo'][0] = 'Bangor';
nic['Poulsbo'][1] = 'Breidablick';
nic['Poulsbo'][2] = 'Breidablik';
nic['Poulsbo'][3] = 'Brownsville';
nic['Poulsbo'][4] = 'Central Kitsap';
nic['Poulsbo'][5] = 'Central Valley';
nic['Poulsbo'][6] = 'Clear Creek';
nic['Poulsbo'][7] = 'Edgewater Estates';
nic['Poulsbo'][8] = 'Finn Hill';
nic['Poulsbo'][9] = 'Indianola';
nic['Poulsbo'][10] = 'Island Lake';
nic['Poulsbo'][11] = 'Keyport';
nic['Poulsbo'][12] = 'Kingston';
nic['Poulsbo'][13] = 'Lemolo';
nic['Poulsbo'][14] = 'Lincoln Hill';
nic['Poulsbo'][15] = 'Lofall';
nic['Poulsbo'][16] = 'Miller Bay Estates';
nic['Poulsbo'][17] = 'Poulsbo';
nic['Poulsbo'][18] = 'Poulsbo Place';
nic['Poulsbo'][19] = 'Ridgetop';
nic['Poulsbo'][20] = 'Sandy Hook';
nic['Poulsbo'][21] = 'Scandia';
nic['Poulsbo'][22] = 'Silverdale';
nic['Poulsbo'][23] = 'Suquamish';
nic['Poulsbo'][24] = 'Vinland';
nic['Poulsbo'][25] = 'Waghorn Hills';
nic['Poulsbo'][26] = 'Woods & Meadows';
nic['Preston'] = new Array();
nic['Preston'][0] = 'Issaquah';
nic['Preston'][1] = 'Mitchell Hill';
nic['Preston'][2] = 'Preston';
nic['Preston'][3] = 'Upper Preston';
nic['Prosser'] = new Array();
nic['Prosser'][0] = 'Benton';
nic['Prosser'][1] = 'North Prosser';
nic['Prosser'][2] = 'Prosser';
nic['Pullman'] = new Array();
nic['Pullman'][0] = 'Pullman';
nic['Purdy'] = new Array();
nic['Purdy'][0] = 'Gig Harbor';
nic['Purdy'][1] = 'Home';
nic['Purdy'][2] = 'Key Peninsula North';
nic['Purdy'][3] = 'Purdy';
nic['Puyallup'] = new Array();
nic['Puyallup'][0] = 'Bethel';
nic['Puyallup'][1] = 'Brookdale';
nic['Puyallup'][2] = 'Crystal Ridge';
nic['Puyallup'][3] = 'Downtown';
nic['Puyallup'][4] = 'Edgewood';
nic['Puyallup'][5] = 'English Gardens';
nic['Puyallup'][6] = 'English Ridge';
nic['Puyallup'][7] = 'Frederickson';
nic['Puyallup'][8] = 'Gem Heights';
nic['Puyallup'][9] = 'Graham';
nic['Puyallup'][10] = 'Grayhawk';
nic['Puyallup'][11] = 'Lake Tapps';
nic['Puyallup'][12] = 'Lipoma Firs';
nic['Puyallup'][13] = 'Lipoma Golf Course';
nic['Puyallup'][14] = 'Manorwood';
nic['Puyallup'][15] = 'Maplewood';
nic['Puyallup'][16] = 'McMillen';
nic['Puyallup'][17] = 'McMillin';
nic['Puyallup'][18] = 'Midland';
nic['Puyallup'][19] = 'NE Puyallup';
nic['Puyallup'][20] = 'North Puyallup';
nic['Puyallup'][21] = 'Northbridge';
nic['Puyallup'][22] = 'Nw Puyallup';
nic['Puyallup'][23] = 'Orting';
nic['Puyallup'][24] = 'Puyallup';
nic['Puyallup'][25] = 'Puyallup Valley';
nic['Puyallup'][26] = 'Rodesco';
nic['Puyallup'][27] = 'Shaw Road';
nic['Puyallup'][28] = 'Silver Creek';
nic['Puyallup'][29] = 'South Hill';
nic['Puyallup'][30] = 'Spanaway';
nic['Puyallup'][31] = 'Stonegate';
nic['Puyallup'][32] = 'Summit';
nic['Puyallup'][33] = 'Sumner';
nic['Puyallup'][34] = 'Sumner Valley';
nic['Puyallup'][35] = 'Sunrise';
nic['Puyallup'][36] = 'Tacoma';
nic['Queets'] = new Array();
nic['Queets'][0] = 'Clearwater';
nic['Queets'][1] = 'Lower Hoh';
nic['Queets'][2] = 'Queets';
nic['Queets'][3] = 'Quinault';
nic['Quilcene'] = new Array();
nic['Quilcene'][0] = 'Brinnon';
nic['Quilcene'][1] = 'Center';
nic['Quilcene'][2] = 'Coyle';
nic['Quilcene'][3] = 'Dabob';
nic['Quilcene'][4] = 'East Quilcene';
nic['Quilcene'][5] = 'Fishermans Harbor';
nic['Quilcene'][6] = 'Hazel Point';
nic['Quilcene'][7] = 'Lake Leland';
nic['Quilcene'][8] = 'Mount Walker';
nic['Quilcene'][9] = 'Quilcene';
nic['Quinault'] = new Array();
nic['Quinault'][0] = 'Quinault';
nic['Quinault'][1] = 'Taholah';
nic['Quincy'] = new Array();
nic['Quincy'][0] = 'Ephrata';
nic['Quincy'][1] = 'George';
nic['Quincy'][2] = 'Quincy';
nic['Quincy'][3] = 'Quincy Valley Golf C';
nic['Quincy'][4] = 'Rimrock';
nic['Quincy'][5] = 'Sunland Estates';
nic['Quincy'][6] = 'Trinidad';
nic['Quincy'][7] = 'Winchester';
nic['Rainier'] = new Array();
nic['Rainier'][0] = 'Bald Hills';
nic['Rainier'][1] = 'East Olympia';
nic['Rainier'][2] = 'McIntosh Lake';
nic['Rainier'][3] = 'Olympia';
nic['Rainier'][4] = 'Rainier';
nic['Rainier'][5] = 'Rainier Rural';
nic['Rainier'][6] = 'Vail';
nic['Rainier'][7] = 'Yelm';
nic['Rainier'][8] = 'Yelm Rural';
nic['Randle'] = new Array();
nic['Randle'][0] = 'Packwood';
nic['Randle'][1] = 'Randle';
nic['Ravensdale'] = new Array();
nic['Ravensdale'][0] = 'Black Diamond';
nic['Ravensdale'][1] = 'Cumberland';
nic['Ravensdale'][2] = 'East Maple Valley';
nic['Ravensdale'][3] = 'Enumclaw';
nic['Ravensdale'][4] = 'Four Corners';
nic['Ravensdale'][5] = 'Green River';
nic['Ravensdale'][6] = 'Hobart';
nic['Ravensdale'][7] = 'Issaquah';
nic['Ravensdale'][8] = 'Kanaskat';
nic['Ravensdale'][9] = 'Kangley';
nic['Ravensdale'][10] = 'Lake Retreat';
nic['Ravensdale'][11] = 'Maple Valley';
nic['Ravensdale'][12] = 'Palmer';
nic['Ravensdale'][13] = 'Ravensdale';
nic['Ravensdale'][14] = 'Rural';
nic['Ravensdale'][15] = 'Sugarloaf';
nic['Ravensdale'][16] = 'Veazie';
nic['Raymond'] = new Array();
nic['Raymond'][0] = 'Frances';
nic['Raymond'][1] = 'Menlo';
nic['Raymond'][2] = 'Old Willapa';
nic['Raymond'][3] = 'Raymond';
nic['Raymond'][4] = 'South Bend';
nic['Raymond'][5] = 'Willapa';
nic['Reardan'] = new Array();
nic['Reardan'][0] = 'Reardan';
nic['Redmond'] = new Array();
nic['Redmond'][0] = 'Ames Lake';
nic['Redmond'][1] = 'Ardmore';
nic['Redmond'][2] = 'Avondale';
nic['Redmond'][3] = 'Bear Creek';
nic['Redmond'][4] = 'Bellevue';
nic['Redmond'][5] = 'Brae Burn';
nic['Redmond'][6] = 'Bridle Trails';
nic['Redmond'][7] = 'Canterbury Woods';
nic['Redmond'][8] = 'Cedar';
nic['Redmond'][9] = 'Downtown';
nic['Redmond'][10] = 'Downtown Redmond';
nic['Redmond'][11] = 'East Lake Sammamish';
nic['Redmond'][12] = 'Education Hill';
nic['Redmond'][13] = 'English Cove';
nic['Redmond'][14] = 'English Hill';
nic['Redmond'][15] = 'Fall City';
nic['Redmond'][16] = 'Fall City Road';
nic['Redmond'][17] = 'Grass Lawn Park';
nic['Redmond'][18] = 'Grousemont';
nic['Redmond'][19] = 'Gunshy Ridge';
nic['Redmond'][20] = 'Hollywood Hill';
nic['Redmond'][21] = 'Hunters Glen';
nic['Redmond'][22] = 'Idylwood';
nic['Redmond'][23] = 'Kirkland';
nic['Redmond'][24] = 'Lake Sammamish';
nic['Redmond'][25] = 'Marymoor';
nic['Redmond'][26] = 'Medina';
nic['Redmond'][27] = 'Microsoft';
nic['Redmond'][28] = 'North Rose Hill';
nic['Redmond'][29] = 'Novelty Hill';
nic['Redmond'][30] = 'Overlake';
nic['Redmond'][31] = 'Plateau';
nic['Redmond'][32] = 'Redmond';
nic['Redmond'][33] = 'Redmond Ridge';
nic['Redmond'][34] = 'Rose Hill';
nic['Redmond'][35] = 'Sammamish';
nic['Redmond'][36] = 'Sammamish River';
nic['Redmond'][37] = 'Strattonwood';
nic['Redmond'][38] = 'Tam O\'shanter';
nic['Redmond'][39] = 'Totem Lake';
nic['Redmond'][40] = 'Trilogy';
nic['Redmond'][41] = 'Union Hill';
nic['Redmond'][42] = 'West Lake Sammamish';
nic['Redmond'][43] = 'Woodinville';
nic['Renton'] = new Array();
nic['Renton'][0] = 'Bellevue';
nic['Renton'][1] = 'Benson Hill';
nic['Renton'][2] = 'Briarwood';
nic['Renton'][3] = 'Bryn Mawr';
nic['Renton'][4] = 'Burien';
nic['Renton'][5] = 'Carriagewood';
nic['Renton'][6] = 'Cascade';
nic['Renton'][7] = 'Cedar River';
nic['Renton'][8] = 'Coal Creek';
nic['Renton'][9] = 'Coalfield';
nic['Renton'][10] = 'Cougar Mountain';
nic['Renton'][11] = 'Downtown';
nic['Renton'][12] = 'Downtown Kent';
nic['Renton'][13] = 'Downtown Redmond';
nic['Renton'][14] = 'Downtown Renton';
nic['Renton'][15] = 'Earlington';
nic['Renton'][16] = 'East Hill';
nic['Renton'][17] = 'East Renton';
nic['Renton'][18] = 'Fairwood';
nic['Renton'][19] = 'Fairwood Greens';
nic['Renton'][20] = 'Forest Estates';
nic['Renton'][21] = 'Hazen';
nic['Renton'][22] = 'Heather Downs';
nic['Renton'][23] = 'Highlands';
nic['Renton'][24] = 'Honey Creek';
nic['Renton'][25] = 'Issaquah';
nic['Renton'][26] = 'Kennydale';
nic['Renton'][27] = 'Kennydale/New Castle';
nic['Renton'][28] = 'Kent';
nic['Renton'][29] = 'Kentridge';
nic['Renton'][30] = 'Lake Desire';
nic['Renton'][31] = 'Lake Kathleen';
nic['Renton'][32] = 'Lake McDonald';
nic['Renton'][33] = 'Lake Youngs';
nic['Renton'][34] = 'Lakeridge';
nic['Renton'][35] = 'Liberty Ridge';
nic['Renton'][36] = 'Lower Kennydale';
nic['Renton'][37] = 'Maple Hills';
nic['Renton'][38] = 'Maple Ridge';
nic['Renton'][39] = 'Maple Valley';
nic['Renton'][40] = 'Maple Valley Heights';
nic['Renton'][41] = 'Maplewood';
nic['Renton'][42] = 'Maplewood Heights';
nic['Renton'][43] = 'May Creek';
nic['Renton'][44] = 'May Valley';
nic['Renton'][45] = 'Newcastle';
nic['Renton'][46] = 'North Renton';
nic['Renton'][47] = 'Panther Lake';
nic['Renton'][48] = 'Petrovitsky';
nic['Renton'][49] = 'Renton';
nic['Renton'][50] = 'Renton Hill';
nic['Renton'][51] = 'Rolling Hills';
nic['Renton'][52] = 'Se Renton';
nic['Renton'][53] = 'Seattle';
nic['Renton'][54] = 'Shadow Lake';
nic['Renton'][55] = 'Skyway';
nic['Renton'][56] = 'Soos Creek';
nic['Renton'][57] = 'Southcenter';
nic['Renton'][58] = 'Spring Glen';
nic['Renton'][59] = 'Spring Hill';
nic['Renton'][60] = 'Spring Lake';
nic['Renton'][61] = 'Springbrook';
nic['Renton'][62] = 'Springhill';
nic['Renton'][63] = 'Squak Mountain';
nic['Renton'][64] = 'Summerfield';
nic['Renton'][65] = 'Summerwind';
nic['Renton'][66] = 'Talbot Hill';
nic['Renton'][67] = 'Tiffany Park';
nic['Renton'][68] = 'Upper Rainier Beach';
nic['Renton'][69] = 'Vista View';
nic['Renton'][70] = 'Wilson Hill';
nic['Renton'][71] = 'Windsor Hills';
nic['Republic'] = new Array();
nic['Republic'][0] = 'Curlew';
nic['Republic'][1] = 'Kettle Falls';
nic['Republic'][2] = 'Republic';
nic['Rice'] = new Array();
nic['Rice'][0] = 'Gifford';
nic['Rice'][1] = 'Kettle Falls';
nic['Richland'] = new Array();
nic['Richland'][0] = 'Benton';
nic['Richland'][1] = 'Hanford Works';
nic['Richland'][2] = 'Kennewick';
nic['Richland'][3] = 'Richland';
nic['Ridgefield'] = new Array();
nic['Ridgefield'][0] = 'Cozy Camp';
nic['Ridgefield'][1] = 'Daybreak';
nic['Ridgefield'][2] = 'Dollars Corner';
nic['Ridgefield'][3] = 'East Ridgefield';
nic['Ridgefield'][4] = 'Fairgrounds';
nic['Ridgefield'][5] = 'La Center';
nic['Ridgefield'][6] = 'Mt. Vista';
nic['Ridgefield'][7] = 'Ridgefield';
nic['Ridgefield'][8] = 'Ridgefield Junction';
nic['Ridgefield'][9] = 'Salmon Creek';
nic['Ridgefield'][10] = 'Vancouver';
nic['Ridgefield'][11] = 'West Ridgefield';
nic['Ridgefield'][12] = 'Whipple Creek';
nic['Ridgefield'][13] = 'WSU';
nic['Ritzville'] = new Array();
nic['Ritzville'][0] = 'Marlin';
nic['Ritzville'][1] = 'Ritzville';
nic['Ritzville'][2] = 'Ruff';
nic['Riverside'] = new Array();
nic['Riverside'][0] = 'Chewilikan';
nic['Riverside'][1] = 'Keystone';
nic['Riverside'][2] = 'Limebelt';
nic['Riverside'][3] = 'Okanogan';
nic['Riverside'][4] = 'Omak';
nic['Riverside'][5] = 'Riverside';
nic['Riverside'][6] = 'Synarep';
nic['Riverside'][7] = 'Tonasket';
nic['Riverside'][8] = 'Tunk Mountain Creek';
nic['Rochester'] = new Array();
nic['Rochester'][0] = 'Applegate';
nic['Rochester'][1] = 'Black River';
nic['Rochester'][2] = 'Bucoda';
nic['Rochester'][3] = 'Centralia';
nic['Rochester'][4] = 'Chehalis';
nic['Rochester'][5] = 'Doty';
nic['Rochester'][6] = 'Gate';
nic['Rochester'][7] = 'Grand Mound';
nic['Rochester'][8] = 'Kelly\'s Corner';
nic['Rochester'][9] = 'Littlerock';
nic['Rochester'][10] = 'Maytown';
nic['Rochester'][11] = 'Olympia';
nic['Rochester'][12] = 'Rochester';
nic['Rochester'][13] = 'Rural';
nic['Rochester'][14] = 'Tenino';
nic['Rochester'][15] = 'Tumwater';
nic['Rock Island'] = new Array();
nic['Rock Island'][0] = 'East Wenatchee';
nic['Rockport'] = new Array();
nic['Rockport'][0] = 'Concrete';
nic['Rockport'][1] = 'Marblemount';
nic['Rockport'][2] = 'Rockport';
nic['Rockport'][3] = 'Sauk';
nic['Ronald'] = new Array();
nic['Ronald'][0] = 'Bakers Acres';
nic['Ronald'][1] = 'Cle Elum';
nic['Ronald'][2] = 'Driftwood Acres';
nic['Ronald'][3] = 'Evergreen Valley';
nic['Ronald'][4] = 'Kachess';
nic['Ronald'][5] = 'Lake Cle Elum';
nic['Ronald'][6] = 'Morgan Creek';
nic['Ronald'][7] = 'Pineloch Sun';
nic['Ronald'][8] = 'Ronald';
nic['Ronald'][9] = 'Roslyn Ridge';
nic['Ronald'][10] = 'Sunshine Estates';
nic['Ronald'][11] = 'Wildwood';
nic['Rosburg'] = new Array();
nic['Rosburg'][0] = 'Cathlamet';
nic['Rosburg'][1] = 'Deep River';
nic['Rosburg'][2] = 'Pillar Rock';
nic['Rosburg'][3] = 'Rosburg';
nic['Roslyn'] = new Array();
nic['Roslyn'][0] = 'Lake Cle Elum';
nic['Roslyn'][1] = 'Pineloch Sun';
nic['Roslyn'][2] = 'Roslyn';
nic['Roslyn'][3] = 'Suncadia';
nic['Roy'] = new Array();
nic['Roy'][0] = 'Allen Road';
nic['Roy'][1] = 'Bethel';
nic['Roy'][2] = 'Eatonville';
nic['Roy'][3] = 'Graham';
nic['Roy'][4] = 'Harts Lake';
nic['Roy'][5] = 'Lacamas';
nic['Roy'][6] = 'Lake Serene';
nic['Roy'][7] = 'McKenna';
nic['Roy'][8] = 'Nisqually River';
nic['Roy'][9] = 'Oakview Heights';
nic['Roy'][10] = 'Roy';
nic['Roy'][11] = 'Rural';
nic['Roy'][12] = 'Silver Lake';
nic['Roy'][13] = 'Spanaway';
nic['Roy'][14] = 'Whitewater Estates';
nic['Roy'][15] = 'Yelm Rural';
nic['Royal City'] = new Array();
nic['Royal City'][0] = 'Frenchman Hill';
nic['Royal City'][1] = 'Potholes';
nic['Royal City'][2] = 'Royal City';
nic['Royal City'][3] = 'Villa Real';
nic['Ruston'] = new Array();
nic['Ruston'][0] = 'North Tacoma';
nic['Ruston'][1] = 'Point Defiance';
nic['Ruston'][2] = 'Ruston';
nic['Ryderwood'] = new Array();
nic['Ryderwood'][0] = 'Napavine';
nic['Ryderwood'][1] = 'Ryderwood';
nic['Saint John'] = new Array();
nic['Saint John'][0] = 'Saint John';
nic['Salkum'] = new Array();
nic['Salkum'][0] = 'Ethel';
nic['Salkum'][1] = 'Mayfield Lake';
nic['Salkum'][2] = 'Mossyrock';
nic['Salkum'][3] = 'Salkum';
nic['Salkum'][4] = 'Silver Creek';
nic['Samish Island'] = new Array();
nic['Samish Island'][0] = 'Samish Island';
nic['Sammamish'] = new Array();
nic['Sammamish'][0] = 'Adelaide';
nic['Sammamish'][1] = 'Beaver Lake';
nic['Sammamish'][2] = 'Bellevue';
nic['Sammamish'][3] = 'Downtown Issaquah';
nic['Sammamish'][4] = 'East Lake Sammamish';
nic['Sammamish'][5] = 'Fall City';
nic['Sammamish'][6] = 'Fall City Road';
nic['Sammamish'][7] = 'Heritage Hills';
nic['Sammamish'][8] = 'Hidden Ridge';
nic['Sammamish'][9] = 'Inglewood';
nic['Sammamish'][10] = 'Issaquah';
nic['Sammamish'][11] = 'Issaquah-Fall City Rd';
nic['Sammamish'][12] = 'Issaquah/Sammamish';
nic['Sammamish'][13] = 'Klahanie';
nic['Sammamish'][14] = 'Lake Sammamish';
nic['Sammamish'][15] = 'Newcastle';
nic['Sammamish'][16] = 'Pine Lake';
nic['Sammamish'][17] = 'Plateau';
nic['Sammamish'][18] = 'Providence Point';
nic['Sammamish'][19] = 'Redford Ranch';
nic['Sammamish'][20] = 'Redmond';
nic['Sammamish'][21] = 'Sahalee';
nic['Sammamish'][22] = 'Sammamish';
nic['Sammamish'][23] = 'Sammamish River';
nic['Sammamish'][24] = 'Thompson Hill';
nic['Sammamish'][25] = 'Timberline';
nic['Sammamish'][26] = 'Trossachs';
nic['Sammamish'][27] = 'Vintage';
nic['San Juan Island'] = new Array();
nic['San Juan Island'][0] = 'Argyle';
nic['San Juan Island'][1] = 'Central';
nic['San Juan Island'][2] = 'East';
nic['San Juan Island'][3] = 'North';
nic['San Juan Island'][4] = 'Obstruction Pass';
nic['San Juan Island'][5] = 'Orcas';
nic['San Juan Island'][6] = 'Roche Harbor';
nic['San Juan Island'][7] = 'San Juan Island';
nic['San Juan Island'][8] = 'South';
nic['San Juan Island'][9] = 'Town';
nic['San Juan Island'][10] = 'Waldron';
nic['San Juan Island'][11] = 'West';
nic['Satsop'] = new Array();
nic['Satsop'][0] = 'Satsop';
nic['Seabeck'] = new Array();
nic['Seabeck'][0] = 'Bremerton';
nic['Seabeck'][1] = 'Camp Union';
nic['Seabeck'][2] = 'Central Kitsap';
nic['Seabeck'][3] = 'Crosby';
nic['Seabeck'][4] = 'Dewatto';
nic['Seabeck'][5] = 'Highlands';
nic['Seabeck'][6] = 'Hintzville';
nic['Seabeck'][7] = 'Holly';
nic['Seabeck'][8] = 'Hood Canal';
nic['Seabeck'][9] = 'Lake Symington';
nic['Seabeck'][10] = 'Lake Tahuyeh';
nic['Seabeck'][11] = 'Maple Beach';
nic['Seabeck'][12] = 'Miami Beach';
nic['Seabeck'][13] = 'Mission Lake';
nic['Seabeck'][14] = 'Seabeck';
nic['Seabeck'][15] = 'Seabeck Heights';
nic['Seabeck'][16] = 'Stavis Bay';
nic['Seabeck'][17] = 'Stavis Creek';
nic['Seahurst'] = new Array();
nic['Seahurst'][0] = 'Seahurst';
nic['Seahurst'][1] = 'West Seattle';
nic['SeaTac'] = new Array();
nic['SeaTac'][0] = 'Angle Lake';
nic['SeaTac'][1] = 'Boulevard Park';
nic['SeaTac'][2] = 'Bow Lake';
nic['SeaTac'][3] = 'Burien';
nic['SeaTac'][4] = 'Cedarhurst';
nic['SeaTac'][5] = 'Des Moines';
nic['SeaTac'][6] = 'Highline';
nic['SeaTac'][7] = 'Kent';
nic['SeaTac'][8] = 'McMicken Heights';
nic['SeaTac'][9] = 'Normandy Park';
nic['SeaTac'][10] = 'North Hill';
nic['SeaTac'][11] = 'Renton';
nic['SeaTac'][12] = 'Riverton';
nic['SeaTac'][13] = 'Riverview';
nic['SeaTac'][14] = 'Seatac';
nic['SeaTac'][15] = 'Seattle';
nic['SeaTac'][16] = 'Southcenter';
nic['SeaTac'][17] = 'The Lakes';
nic['SeaTac'][18] = 'Tukwila';
nic['SeaTac'][19] = 'Wedgewood';
nic['SeaTac'][20] = 'West Hill';
nic['Seattle'] = new Array();
nic['Seattle'][0] = 'Admiral';
nic['Seattle'][1] = 'Alaska Junction';
nic['Seattle'][2] = 'Alki';
nic['Seattle'][3] = 'Allentown';
nic['Seattle'][4] = 'Angle Lake';
nic['Seattle'][5] = 'Arbor Heights';
nic['Seattle'][6] = 'Arboretum';
nic['Seattle'][7] = 'Arroyo';
nic['Seattle'][8] = 'Ballard';
nic['Seattle'][9] = 'Ballinger';
nic['Seattle'][10] = 'Beach Drive';
nic['Seattle'][11] = 'Beacon Hill';
nic['Seattle'][12] = 'Bellevue';
nic['Seattle'][13] = 'Belltown';
nic['Seattle'][14] = 'Belvidere';
nic['Seattle'][15] = 'Benson Hill';
nic['Seattle'][16] = 'Bitter Lake';
nic['Seattle'][17] = 'Blakley Manor';
nic['Seattle'][18] = 'Blue Ridge';
nic['Seattle'][19] = 'Bothell';
nic['Seattle'][20] = 'Boulevard Park';
nic['Seattle'][21] = 'Bow Lake';
nic['Seattle'][22] = 'Bridle Trails';
nic['Seattle'][23] = 'Briercrest';
nic['Seattle'][24] = 'Brighton';
nic['Seattle'][25] = 'Broadmoor';
nic['Seattle'][26] = 'Broadview';
nic['Seattle'][27] = 'Broadway';
nic['Seattle'][28] = 'Bryant';
nic['Seattle'][29] = 'Bryn Mawr';
nic['Seattle'][30] = 'Burien';
nic['Seattle'][31] = 'Campbell Hill';
nic['Seattle'][32] = 'Capitol Hill';
nic['Seattle'][33] = 'Cedar Park';
nic['Seattle'][34] = 'Cedarhurst';
nic['Seattle'][35] = 'Central Area';
nic['Seattle'][36] = 'Chelsea Park';
nic['Seattle'][37] = 'Columbia';
nic['Seattle'][38] = 'Columbia City';
nic['Seattle'][39] = 'Crown Hill';
nic['Seattle'][40] = 'Delridge';
nic['Seattle'][41] = 'Denny Blaine';
nic['Seattle'][42] = 'Denny Triangle';
nic['Seattle'][43] = 'Des Moines';
nic['Seattle'][44] = 'Downtown';
nic['Seattle'][45] = 'Dunlap';
nic['Seattle'][46] = 'Earlington';
nic['Seattle'][47] = 'East Union';
nic['Seattle'][48] = 'Eastlake';
nic['Seattle'][49] = 'Echo Lake';
nic['Seattle'][50] = 'Fairmount';
nic['Seattle'][51] = 'Fauntleroy';
nic['Seattle'][52] = 'Federal Way';
nic['Seattle'][53] = 'First Hill';
nic['Seattle'][54] = 'Foster';
nic['Seattle'][55] = 'Fremont';
nic['Seattle'][56] = 'Gatewood';
nic['Seattle'][57] = 'Genesee';
nic['Seattle'][58] = 'Genesse';
nic['Seattle'][59] = 'Georgetown';
nic['Seattle'][60] = 'Glen Acres';
nic['Seattle'][61] = 'Government Center';
nic['Seattle'][62] = 'Green Lake';
nic['Seattle'][63] = 'Greenwood';
nic['Seattle'][64] = 'Gregory Heights';
nic['Seattle'][65] = 'Haller Lake';
nic['Seattle'][66] = 'Hawthorne Hills';
nic['Seattle'][67] = 'Hazel Valley';
nic['Seattle'][68] = 'Highland Park';
nic['Seattle'][69] = 'Highline';
nic['Seattle'][70] = 'Hillman City';
nic['Seattle'][71] = 'Inglewood/Inglemoor';
nic['Seattle'][72] = 'Innis Arden';
nic['Seattle'][73] = 'Interbay';
nic['Seattle'][74] = 'International District';
nic['Seattle'][75] = 'Inverness';
nic['Seattle'][76] = 'Jackson Park';
nic['Seattle'][77] = 'Jefferson Park';
nic['Seattle'][78] = 'Judkins';
nic['Seattle'][79] = 'Kenmore';
nic['Seattle'][80] = 'Lago Vista';
nic['Seattle'][81] = 'Lake Burien';
nic['Seattle'][82] = 'Lake City';
nic['Seattle'][83] = 'Lake Forest Park';
nic['Seattle'][84] = 'Lake Union';
nic['Seattle'][85] = 'Lakeridge';
nic['Seattle'][86] = 'Lakewood';
nic['Seattle'][87] = 'Laurelhurst';
nic['Seattle'][88] = 'Leschi';
nic['Seattle'][89] = 'Lincoln Park';
nic['Seattle'][90] = 'Loyal Heights';
nic['Seattle'][91] = 'Madison Park';
nic['Seattle'][92] = 'Madison Valley';
nic['Seattle'][93] = 'Madrona';
nic['Seattle'][94] = 'Magnolia';
nic['Seattle'][95] = 'Magnolia Bluff';
nic['Seattle'][96] = 'Manhattan';
nic['Seattle'][97] = 'Manhatten';
nic['Seattle'][98] = 'Maple Leaf';
nic['Seattle'][99] = 'Maplewood';
nic['Seattle'][100] = 'Marine View';
nic['Seattle'][101] = 'Matthews Beach';
nic['Seattle'][102] = 'McMicken Heights';
nic['Seattle'][103] = 'Meadowbrook';
nic['Seattle'][104] = 'Mercer Island';
nic['Seattle'][105] = 'Montlake';
nic['Seattle'][106] = 'Mt Baker';
nic['Seattle'][107] = 'N Beacon Hill';
nic['Seattle'][108] = 'Normandy Park';
nic['Seattle'][109] = 'North Admiral';
nic['Seattle'][110] = 'North Beach';
nic['Seattle'][111] = 'North Burien';
nic['Seattle'][112] = 'North Capitol Hill';
nic['Seattle'][113] = 'North City';
nic['Seattle'][114] = 'North Hill';
nic['Seattle'][115] = 'North Shorewood';
nic['Seattle'][116] = 'Northgate';
nic['Seattle'][117] = 'Olympic Hills';
nic['Seattle'][118] = 'Olympic Manor';
nic['Seattle'][119] = 'Pacific Heights';
nic['Seattle'][120] = 'Parkwood';
nic['Seattle'][121] = 'Phinney Ridge';
nic['Seattle'][122] = 'Pike Place/Pioneer Square';
nic['Seattle'][123] = 'Pinehurst';
nic['Seattle'][124] = 'Pioneer Square';
nic['Seattle'][125] = 'Portage Bay';
nic['Seattle'][126] = 'Queen Anne';
nic['Seattle'][127] = 'Rainier Beach';
nic['Seattle'][128] = 'Rainier Valley';
nic['Seattle'][129] = 'Ravenna';
nic['Seattle'][130] = 'Redmond';
nic['Seattle'][131] = 'Renton';
nic['Seattle'][132] = 'Richmond Beach';
nic['Seattle'][133] = 'Richmond Highlands';
nic['Seattle'][134] = 'Ridgecrest';
nic['Seattle'][135] = 'Riverton';
nic['Seattle'][136] = 'Roanoke Park';
nic['Seattle'][137] = 'Roosevelt';
nic['Seattle'][138] = 'Safeco Field';
nic['Seattle'][139] = 'Sand Point';
nic['Seattle'][140] = 'Seahurst';
nic['Seattle'][141] = 'Seatac';
nic['Seattle'][142] = 'Seattle';
nic['Seattle'][143] = 'Seaview';
nic['Seattle'][144] = 'Seward Park';
nic['Seattle'][145] = 'Sheridan';
nic['Seattle'][146] = 'Sheridan Beach';
nic['Seattle'][147] = 'Shoreline';
nic['Seattle'][148] = 'Shorewood';
nic['Seattle'][149] = 'Skyway';
nic['Seattle'][150] = 'Sodo';
nic['Seattle'][151] = 'South Park';
nic['Seattle'][152] = 'Southcenter';
nic['Seattle'][153] = 'Southern';
nic['Seattle'][154] = 'Spring Glen';
nic['Seattle'][155] = 'Sunset Hill';
nic['Seattle'][156] = 'The Highlands';
nic['Seattle'][157] = 'Three Tree Point';
nic['Seattle'][158] = 'Top Hat';
nic['Seattle'][159] = 'Tukwila';
nic['Seattle'][160] = 'University District';
nic['Seattle'][161] = 'Upper Rainier Beach';
nic['Seattle'][162] = 'Victory Heights';
nic['Seattle'][163] = 'View Ridge';
nic['Seattle'][164] = 'Wallingford';
nic['Seattle'][165] = 'Washington Park';
nic['Seattle'][166] = 'Wedgwood';
nic['Seattle'][167] = 'West Mercer';
nic['Seattle'][168] = 'West Seattle';
nic['Seattle'][169] = 'Westlake';
nic['Seattle'][170] = 'Westminster';
nic['Seattle'][171] = 'Westwood';
nic['Seattle'][172] = 'Westwood Village';
nic['Seattle'][173] = 'White Center';
nic['Seattle'][174] = 'Whittier';
nic['Seattle'][175] = 'Windermere';
nic['Seattle'][176] = 'Woodland Park';
nic['Seaview'] = new Array();
nic['Seaview'][0] = 'Long Beach';
nic['Seaview'][1] = 'Seaside';
nic['Seaview'][2] = 'Seaview';
nic['Sedro Woolley'] = new Array();
nic['Sedro Woolley'][0] = 'Acme';
nic['Sedro Woolley'][1] = 'Alger';
nic['Sedro Woolley'][2] = 'Bacus Hill';
nic['Sedro Woolley'][3] = 'Bellingham';
nic['Sedro Woolley'][4] = 'Birdsview';
nic['Sedro Woolley'][5] = 'Bow';
nic['Sedro Woolley'][6] = 'Brickyard Creek';
nic['Sedro Woolley'][7] = 'Burlington';
nic['Sedro Woolley'][8] = 'Cain Lake';
nic['Sedro Woolley'][9] = 'Cape Horn';
nic['Sedro Woolley'][10] = 'Clear Lake';
nic['Sedro Woolley'][11] = 'Concrete';
nic['Sedro Woolley'][12] = 'Day Creek';
nic['Sedro Woolley'][13] = 'Downtown';
nic['Sedro Woolley'][14] = 'Dukes Hill';
nic['Sedro Woolley'][15] = 'Eagle Valley';
nic['Sedro Woolley'][16] = 'Fairhaven';
nic['Sedro Woolley'][17] = 'Glenhaven';
nic['Sedro Woolley'][18] = 'Hamilton';
nic['Sedro Woolley'][19] = 'Janicki Cove';
nic['Sedro Woolley'][20] = 'Lyman';
nic['Sedro Woolley'][21] = 'Marblemount';
nic['Sedro Woolley'][22] = 'Minkler Lake';
nic['Sedro Woolley'][23] = 'Rolling Ridge';
nic['Sedro Woolley'][24] = 'Sedro Woolley';
nic['Sedro Woolley'][25] = 'South';
nic['Sedro Woolley'][26] = 'Sudden Valley';
nic['Sedro Woolley'][27] = 'Sumas';
nic['Sekiu'] = new Array();
nic['Sekiu'][0] = '710-Other West';
nic['Sekiu'][1] = 'Forks';
nic['Sekiu'][2] = 'Hoko';
nic['Sekiu'][3] = 'Sequim';
nic['Selah'] = new Array();
nic['Selah'][0] = 'East Selah';
nic['Selah'][1] = 'Naches';
nic['Selah'][2] = 'Selah';
nic['Selah'][3] = 'Yakima';
nic['Sequim'] = new Array();
nic['Sequim'][0] = '710-Other West';
nic['Sequim'][1] = '712-Joyce';
nic['Sequim'][2] = '713-Elwha';
nic['Sequim'][3] = '714-Eden';
nic['Sequim'][4] = '717-Mt. Angeles';
nic['Sequim'][5] = '720-NW Port Angeles';
nic['Sequim'][6] = '721-CW Port Angeles';
nic['Sequim'][7] = '722-CE Port Angeles';
nic['Sequim'][8] = '723-NE Port Angeles';
nic['Sequim'][9] = '724-SW Port Angeles';
nic['Sequim'][10] = '734-North Belleview';
nic['Sequim'][11] = '735-South Belleview';
nic['Sequim'][12] = '736-Mount Pleasent';
nic['Sequim'][13] = '737-West Fairview';
nic['Sequim'][14] = '738-East Fairview';
nic['Sequim'][15] = '739-Blue Mountain';
nic['Sequim'][16] = '744-Monterra';
nic['Sequim'][17] = '745-Agnew';
nic['Sequim'][18] = '746-Parkwood';
nic['Sequim'][19] = '747-Carlsborg';
nic['Sequim'][20] = '748-Greywolf';
nic['Sequim'][21] = '749-South Prairie';
nic['Sequim'][22] = '750-North Prairie';
nic['Sequim'][23] = '751-MacLeay';
nic['Sequim'][24] = '752-West Dungeness';
nic['Sequim'][25] = '753-Cline';
nic['Sequim'][26] = '754-East Dungeness';
nic['Sequim'][27] = '755-Eagle';
nic['Sequim'][28] = '756-Olympic';
nic['Sequim'][29] = '757-Jamestown';
nic['Sequim'][30] = '758-North Sunland';
nic['Sequim'][31] = '759-South Sunland';
nic['Sequim'][32] = '760-Port Williams';
nic['Sequim'][33] = '761-Diamond Point';
nic['Sequim'][34] = '766-Klahhane';
nic['Sequim'][35] = '767-Lost Mountain';
nic['Sequim'][36] = '768-Riverside';
nic['Sequim'][37] = '769-Happy Valley';
nic['Sequim'][38] = '777-NW Sequim';
nic['Sequim'][39] = '778-SW Sequim';
nic['Sequim'][40] = '779-NE Sequim';
nic['Sequim'][41] = '780-SE Sequim';
nic['Sequim'][42] = '785-Blyn';
nic['Sequim'][43] = '787-Gardiner';
nic['Sequim'][44] = 'Blyn';
nic['Sequim'][45] = 'Crescent Beach';
nic['Sequim'][46] = 'Discovery Bay';
nic['Sequim'][47] = 'Dungeness';
nic['Sequim'][48] = 'Gardiner';
nic['Sequim'][49] = 'Sequim';
nic['Seven Bays'] = new Array();
nic['Seven Bays'][0] = 'Seven Bays';
nic['Shaw Island'] = new Array();
nic['Shaw Island'][0] = 'Other Islands';
nic['Shaw Island'][1] = 'San Juan Island';
nic['Shaw Island'][2] = 'Shaw Island';
nic['Shelton'] = new Array();
nic['Shelton'][0] = 'Agate';
nic['Shelton'][1] = 'Angleside';
nic['Shelton'][2] = 'Arcadia';
nic['Shelton'][3] = 'Benson Lake';
nic['Shelton'][4] = 'Capital Hill';
nic['Shelton'][5] = 'Cloquallum';
nic['Shelton'][6] = 'Dayton Trails';
nic['Shelton'][7] = 'Dewatto';
nic['Shelton'][8] = 'Downtown';
nic['Shelton'][9] = 'Elma Rural';
nic['Shelton'][10] = 'Enchantment Ridge';
nic['Shelton'][11] = 'Fawn Lake';
nic['Shelton'][12] = 'Grapeview';
nic['Shelton'][13] = 'Harstene Point';
nic['Shelton'][14] = 'Harstine Island';
nic['Shelton'][15] = 'Harstine Pointe';
nic['Shelton'][16] = 'Hartstene Island';
nic['Shelton'][17] = 'Hartstene Pointe';
nic['Shelton'][18] = 'Hillcrest';
nic['Shelton'][19] = 'Hood Canal';
nic['Shelton'][20] = 'Hoodsport';
nic['Shelton'][21] = 'Island Lake';
nic['Shelton'][22] = 'Johns Prairie';
nic['Shelton'][23] = 'Kamilche';
nic['Shelton'][24] = 'Lake Cushman';
nic['Shelton'][25] = 'Lake Limerick';
nic['Shelton'][26] = 'Lost Lake';
nic['Shelton'][27] = 'Mason Lake';
nic['Shelton'][28] = 'Matlock';
nic['Shelton'][29] = 'Mountain View';
nic['Shelton'][30] = 'Oak Park';
nic['Shelton'][31] = 'Oakland Bay';
nic['Shelton'][32] = 'Oyster Bay';
nic['Shelton'][33] = 'Phillips Lake';
nic['Shelton'][34] = 'Pickering';
nic['Shelton'][35] = 'Potlatch';
nic['Shelton'][36] = 'Rainbow Lake';
nic['Shelton'][37] = 'Rustlewood';
nic['Shelton'][38] = 'Shadowood';
nic['Shelton'][39] = 'Shelton';
nic['Shelton'][40] = 'Shorecrest';
nic['Shelton'][41] = 'Skokomish';
nic['Shelton'][42] = 'South Shore';
nic['Shelton'][43] = 'Spencer Lake';
nic['Shelton'][44] = 'Star Lake';
nic['Shelton'][45] = 'Steamboat Island';
nic['Shelton'][46] = 'Timberlakes';
nic['Shelton'][47] = 'Totten Shores';
nic['Shelton'][48] = 'Trails End';
nic['Shelton'][49] = 'Trails End Lake';
nic['Shelton'][50] = 'Union';
nic['Shelton'][51] = 'Webb Hill';
nic['Shoreline'] = new Array();
nic['Shoreline'][0] = 'Aurora Village';
nic['Shoreline'][1] = 'Ballinger';
nic['Shoreline'][2] = 'Ballinger North';
nic['Shoreline'][3] = 'Bitter Lake';
nic['Shoreline'][4] = 'Briercrest';
nic['Shoreline'][5] = 'Broadview';
nic['Shoreline'][6] = 'Brookside';
nic['Shoreline'][7] = 'Echo Lake';
nic['Shoreline'][8] = 'Edmonds';
nic['Shoreline'][9] = 'Firdale';
nic['Shoreline'][10] = 'Firlands';
nic['Shoreline'][11] = 'Forest Park';
nic['Shoreline'][12] = 'Green Lake';
nic['Shoreline'][13] = 'Greenwood';
nic['Shoreline'][14] = 'Haller Lake';
nic['Shoreline'][15] = 'Hamlin Park';
nic['Shoreline'][16] = 'Innis Arden';
nic['Shoreline'][17] = 'Jackson Park';
nic['Shoreline'][18] = 'Lago Vista';
nic['Shoreline'][19] = 'Lake Ballinger';
nic['Shoreline'][20] = 'Lake City';
nic['Shoreline'][21] = 'Lake Forest Park';
nic['Shoreline'][22] = 'Meridian Park';
nic['Shoreline'][23] = 'North City';
nic['Shoreline'][24] = 'Northgate';
nic['Shoreline'][25] = 'Olympic Hills';
nic['Shoreline'][26] = 'Parkwood';
nic['Shoreline'][27] = 'Richmond Beach';
nic['Shoreline'][28] = 'Richmond Highlands';
nic['Shoreline'][29] = 'Ridgecrest';
nic['Shoreline'][30] = 'Seattle';
nic['Shoreline'][31] = 'Seattle Heights';
nic['Shoreline'][32] = 'Sheridan';
nic['Shoreline'][33] = 'Shoreline';
nic['Shoreline'][34] = 'The Highlands';
nic['Shoreline'][35] = 'Trafford Park';
nic['Shoreline'][36] = 'Twin Ponds';
nic['Shoreline'][37] = 'Westminster';
nic['Shoreline'][38] = 'Woodway';
nic['Silvana'] = new Array();
nic['Silvana'][0] = 'Silvana';
nic['Silver Creek'] = new Array();
nic['Silver Creek'][0] = 'Cinebar';
nic['Silver Creek'][1] = 'Harmony';
nic['Silver Creek'][2] = 'Mossyrock';
nic['Silver Creek'][3] = 'Onalaska';
nic['Silver Creek'][4] = 'Silver Creek';
nic['Silverdale'] = new Array();
nic['Silverdale'][0] = 'Bangor';
nic['Silverdale'][1] = 'Breckenridge';
nic['Silverdale'][2] = 'Bremerton';
nic['Silverdale'][3] = 'Central Kitsap';
nic['Silverdale'][4] = 'Clear Creek';
nic['Silverdale'][5] = 'Eastwind';
nic['Silverdale'][6] = 'Finn Hill';
nic['Silverdale'][7] = 'Hidden Valley';
nic['Silverdale'][8] = 'Holly';
nic['Silverdale'][9] = 'Honeysett';
nic['Silverdale'][10] = 'Island Lake';
nic['Silverdale'][11] = 'Newberry Hill';
nic['Silverdale'][12] = 'Olympic View';
nic['Silverdale'][13] = 'Poulsbo';
nic['Silverdale'][14] = 'Ridgetop';
nic['Silverdale'][15] = 'Seabeck';
nic['Silverdale'][16] = 'Silverdale';
nic['Silverdale'][17] = 'Summerwind';
nic['Silverlake'] = new Array();
nic['Silverlake'][0] = 'Silverlake';
nic['Silverlake'][1] = 'Toutle';
nic['Skamania'] = new Array();
nic['Skamania'][0] = 'Skamania';
nic['Skamania'][1] = 'Washougal';
nic['Skamania'][2] = 'Woodland';
nic['Skamokawa'] = new Array();
nic['Skamokawa'][0] = 'Skamokawa';
nic['Skykomish'] = new Array();
nic['Skykomish'][0] = 'Baring';
nic['Skykomish'][1] = 'Grotto';
nic['Skykomish'][2] = 'Money Creek';
nic['Skykomish'][3] = 'Skykomish';
nic['Skykomish'][4] = 'Stevens Pass';
nic['Skykomish'][5] = 'Timberlane';
nic['Skykomish'][6] = 'Town-skykomish';
nic['Snohomish'] = new Array();
nic['Snohomish'][0] = 'Alderwood';
nic['Snohomish'][1] = 'Bishop Ranch';
nic['Snohomish'][2] = 'Blackmans Lake';
nic['Snohomish'][3] = 'Bothell';
nic['Snohomish'][4] = 'Bunk Foss';
nic['Snohomish'][5] = 'Cascade Heights';
nic['Snohomish'][6] = 'Cathcart';
nic['Snohomish'][7] = 'Cedar';
nic['Snohomish'][8] = 'Centennial Trail';
nic['Snohomish'][9] = 'Chain Lake';
nic['Snohomish'][10] = 'Clearview';
nic['Snohomish'][11] = 'Donegal Park';
nic['Snohomish'][12] = 'Dubuque';
nic['Snohomish'][13] = 'Dutch Hill';
nic['Snohomish'][14] = 'East Lake Stevens';
nic['Snohomish'][15] = 'Echo Falls Country Club';
nic['Snohomish'][16] = 'Echo Lake';
nic['Snohomish'][17] = 'Emerald Forest';
nic['Snohomish'][18] = 'Everett';
nic['Snohomish'][19] = 'Fobes Hill';
nic['Snohomish'][20] = 'Forest Glade';
nic['Snohomish'][21] = 'Granite Falls';
nic['Snohomish'][22] = 'Hidden Valley';
nic['Snohomish'][23] = 'High Bridge';
nic['Snohomish'][24] = 'Highlands';
nic['Snohomish'][25] = 'Historic';
nic['Snohomish'][26] = 'In Town - Monroe';
nic['Snohomish'][27] = 'Ingraham';
nic['Snohomish'][28] = 'Kenwanda';
nic['Snohomish'][29] = 'Lake Bosworth';
nic['Snohomish'][30] = 'Lake Roesiger';
nic['Snohomish'][31] = 'Lake Stevens';
nic['Snohomish'][32] = 'Lord Hill';
nic['Snohomish'][33] = 'Lords Hill';
nic['Snohomish'][34] = 'Machias';
nic['Snohomish'][35] = 'Machias Ridge';
nic['Snohomish'][36] = 'Maltby';
nic['Snohomish'][37] = 'Meadow Lake';
nic['Snohomish'][38] = 'Meadowdale';
nic['Snohomish'][39] = 'Mill Creek';
nic['Snohomish'][40] = 'Monroe';
nic['Snohomish'][41] = 'Newberg';
nic['Snohomish'][42] = 'North Monroe';
nic['Snohomish'][43] = 'Paradise Lake';
nic['Snohomish'][44] = 'Pilchuck';
nic['Snohomish'][45] = 'Pilchuck River';
nic['Snohomish'][46] = 'Riverview';
nic['Snohomish'][47] = 'Robinhood';
nic['Snohomish'][48] = 'Roosevelt';
nic['Snohomish'][49] = 'Seattle Hill';
nic['Snohomish'][50] = 'Silver Firs';
nic['Snohomish'][51] = 'Silver Lake';
nic['Snohomish'][52] = 'Sno/Monroe';
nic['Snohomish'][53] = 'Snohomish';
nic['Snohomish'][54] = 'Snohomish Cascade';
nic['Snohomish'][55] = 'South Everett';
nic['Snohomish'][56] = 'Tester Road';
nic['Snohomish'][57] = 'The Falls';
nic['Snohomish'][58] = 'The Highlands';
nic['Snohomish'][59] = 'Three Lakes';
nic['Snohomish'][60] = 'Town-snohomish';
nic['Snohomish'][61] = 'Trombley Hill';
nic['Snohomish'][62] = 'Wagner Hill';
nic['Snohomish'][63] = 'Wagner Lake';
nic['Snohomish'][64] = 'Wellington';
nic['Snohomish'][65] = 'West Monroe';
nic['Snohomish'][66] = 'West Woodinville';
nic['Snohomish'][67] = 'Westwick';
nic['Snohomish'][68] = 'Woodinville';
nic['Snohomish'][69] = 'Woods Creek';
nic['Snoqualmie'] = new Array();
nic['Snoqualmie'][0] = 'Carnation';
nic['Snoqualmie'][1] = 'Downtown Snoqualmie';
nic['Snoqualmie'][2] = 'Ernies Grove';
nic['Snoqualmie'][3] = 'Indian Hill';
nic['Snoqualmie'][4] = 'Issaquah';
nic['Snoqualmie'][5] = 'Meadowbrook';
nic['Snoqualmie'][6] = 'North Bend';
nic['Snoqualmie'][7] = 'Olmstead Vista';
nic['Snoqualmie'][8] = 'Sammamish';
nic['Snoqualmie'][9] = 'Snoqualmie';
nic['Snoqualmie'][10] = 'Snoqualmie Falls';
nic['Snoqualmie'][11] = 'Snoqualmie Pass';
nic['Snoqualmie'][12] = 'Snoqualmie Ridge';
nic['Snoqualmie'][13] = 'Snoqualmie Uplands';
nic['Snoqualmie Pass'] = new Array();
nic['Snoqualmie Pass'][0] = 'Alpental';
nic['Snoqualmie Pass'][1] = 'Snoqualmie Pass';
nic['Soap Lake'] = new Array();
nic['Soap Lake'][0] = 'Adrian';
nic['Soap Lake'][1] = 'Coulee City';
nic['Soap Lake'][2] = 'Ephrata';
nic['Soap Lake'][3] = 'Grant Orchards';
nic['Soap Lake'][4] = 'Lakemoor';
nic['Soap Lake'][5] = 'Lakeview';
nic['Soap Lake'][6] = 'Lakeview Country Club';
nic['Soap Lake'][7] = 'Lakeview Park';
nic['Soap Lake'][8] = 'Quail Run';
nic['Soap Lake'][9] = 'Salome';
nic['Soap Lake'][10] = 'Soap Lake';
nic['Soap Lake'][11] = 'Soap Lake Heights';
nic['Soap Lake'][12] = 'Westmont Acres';
nic['Soap Lake'][13] = 'Winchester';
nic['South Bend'] = new Array();
nic['South Bend'][0] = 'Bay Center';
nic['South Bend'][1] = 'Naselle';
nic['South Bend'][2] = 'Nemah';
nic['South Bend'][3] = 'South Bend';
nic['South Cle Elum'] = new Array();
nic['South Cle Elum'][0] = 'Cle Elum';
nic['South Cle Elum'][1] = 'South Cle Elum';
nic['South Cle Elum'][2] = 'Timber Mountain';
nic['South Colby'] = new Array();
nic['South Colby'][0] = 'Colby';
nic['South Colby'][1] = 'South Colby';
nic['South Prairie'] = new Array();
nic['South Prairie'][0] = 'Buckley';
nic['South Prairie'][1] = 'Orting';
nic['South Prairie'][2] = 'South Prairie';
nic['Southworth'] = new Array();
nic['Southworth'][0] = 'Fragaria';
nic['Southworth'][1] = 'Southworth';
nic['Spanaway'] = new Array();
nic['Spanaway'][0] = 'Bethel';
nic['Spanaway'][1] = 'Brookdale';
nic['Spanaway'][2] = 'Brooktree';
nic['Spanaway'][3] = 'Clarewood';
nic['Spanaway'][4] = 'Classic View Estates';
nic['Spanaway'][5] = 'Crescent Park';
nic['Spanaway'][6] = 'Eatonville';
nic['Spanaway'][7] = 'Elk Plain';
nic['Spanaway'][8] = 'English Gardens';
nic['Spanaway'][9] = 'Fairway Estates';
nic['Spanaway'][10] = 'Frederickson';
nic['Spanaway'][11] = 'Fredrickson';
nic['Spanaway'][12] = 'Garden Oaks';
nic['Spanaway'][13] = 'Gem Heights';
nic['Spanaway'][14] = 'Graham';
nic['Spanaway'][15] = 'Lake Park';
nic['Spanaway'][16] = 'Loveland';
nic['Spanaway'][17] = 'Midland';
nic['Spanaway'][18] = 'Parkland';
nic['Spanaway'][19] = 'Puyallup';
nic['Spanaway'][20] = 'Rural';
nic['Spanaway'][21] = 'Silver Creek';
nic['Spanaway'][22] = 'South Hill';
nic['Spanaway'][23] = 'South Spanaway';
nic['Spanaway'][24] = 'Southwood';
nic['Spanaway'][25] = 'Spanaway';
nic['Spanaway'][26] = 'Spanaway Lake';
nic['Spanaway'][27] = 'Spring Tree';
nic['Spanaway'][28] = 'Sunnydale';
nic['Spanaway'][29] = 'Tacoma';
nic['Spanaway'][30] = 'Thomas Springs';
nic['Spokane'] = new Array();
nic['Spokane'][0] = 'Liberty Park';
nic['Spokane'][1] = 'Spokane';
nic['Sprague'] = new Array();
nic['Sprague'][0] = 'Sprague';
nic['Springdale'] = new Array();
nic['Springdale'][0] = 'Springdale';
nic['Springdale'][1] = 'Valley';
nic['Stanwood'] = new Array();
nic['Stanwood'][0] = 'Brandstrom';
nic['Stanwood'][1] = 'Bryant';
nic['Stanwood'][2] = 'Camano';
nic['Stanwood'][3] = 'Camano Island';
nic['Stanwood'][4] = 'Cedarhome';
nic['Stanwood'][5] = 'Church Creek';
nic['Stanwood'][6] = 'Conway';
nic['Stanwood'][7] = 'Downtown';
nic['Stanwood'][8] = 'East Stanwood';
nic['Stanwood'][9] = 'Everett';
nic['Stanwood'][10] = 'Firetrail';
nic['Stanwood'][11] = 'Florence';
nic['Stanwood'][12] = 'Golf Course';
nic['Stanwood'][13] = 'Happy Valley';
nic['Stanwood'][14] = 'Historic Downtown';
nic['Stanwood'][15] = 'Kayak Point';
nic['Stanwood'][16] = 'Lake Goodwin';
nic['Stanwood'][17] = 'Lake Howard';
nic['Stanwood'][18] = 'Lake Ketchum';
nic['Stanwood'][19] = 'Lake Martha';
nic['Stanwood'][20] = 'Lake Shoecraft';
nic['Stanwood'][21] = 'Lakewood';
nic['Stanwood'][22] = 'Marine Drive';
nic['Stanwood'][23] = 'McKee\'s Beach';
nic['Stanwood'][24] = 'Monson Corner';
nic['Stanwood'][25] = 'North Everett';
nic['Stanwood'][26] = 'North Stanwood';
nic['Stanwood'][27] = 'Old Town';
nic['Stanwood'][28] = 'On The Hill';
nic['Stanwood'][29] = 'Pioneer Hills';
nic['Stanwood'][30] = 'Port Susan';
nic['Stanwood'][31] = 'Seven Lakes';
nic['Stanwood'][32] = 'Silvana';
nic['Stanwood'][33] = 'Smokey Point';
nic['Stanwood'][34] = 'Snohomish';
nic['Stanwood'][35] = 'Stanwood';
nic['Stanwood'][36] = 'Stanwood-bryant';
nic['Stanwood'][37] = 'Sunday Lake';
nic['Stanwood'][38] = 'Town Stanwood';
nic['Stanwood'][39] = 'Victoria Heights';
nic['Stanwood'][40] = 'Warm Beach';
nic['Stanwood'][41] = 'West Marysville';
nic['Stanwood'][42] = 'West Mount Vernon';
nic['Starbuck'] = new Array();
nic['Starbuck'][0] = 'Starbuck';
nic['Startup'] = new Array();
nic['Startup'][0] = 'Startup';
nic['Startup'][1] = 'Sultan';
nic['Steilacoom'] = new Array();
nic['Steilacoom'][0] = 'Cormorant Passage';
nic['Steilacoom'][1] = 'Ketron Island';
nic['Steilacoom'][2] = 'Lakewood';
nic['Steilacoom'][3] = 'Madrona Park';
nic['Steilacoom'][4] = 'Saltars Point';
nic['Steilacoom'][5] = 'Steilacoom';
nic['Stevenson'] = new Array();
nic['Stevenson'][0] = 'Skamania';
nic['Stevenson'][1] = 'Stevenson';
nic['Stratford'] = new Array();
nic['Stratford'][0] = 'Adrian';
nic['Stratford'][1] = 'Stratford';
nic['Stuart Island'] = new Array();
nic['Stuart Island'][0] = 'Stuart Island';
nic['Sultan'] = new Array();
nic['Sultan'][0] = 'Baring';
nic['Sultan'][1] = 'Cedar Pond';
nic['Sultan'][2] = 'Clearview';
nic['Sultan'][3] = 'Gold Bar';
nic['Sultan'][4] = 'In Town South 522';
nic['Sultan'][5] = 'Index';
nic['Sultan'][6] = 'Ironhead Park';
nic['Sultan'][7] = 'Monroe';
nic['Sultan'][8] = 'Nw Sultan';
nic['Sultan'][9] = 'Old Owen';
nic['Sultan'][10] = 'Riverwood';
nic['Sultan'][11] = 'Skyko Park';
nic['Sultan'][12] = 'Skyview/River King';
nic['Sultan'][13] = 'Snohomish';
nic['Sultan'][14] = 'South Monroe';
nic['Sultan'][15] = 'Startup';
nic['Sultan'][16] = 'Sultan';
nic['Sultan'][17] = 'Sultan Basin';
nic['Sultan'][18] = 'Sultan Town';
nic['Sultan'][19] = 'Town-snohomish';
nic['Sultan'][20] = 'Twin Rivers';
nic['Sultan'][21] = 'Willow Run';
nic['Sumas'] = new Array();
nic['Sumas'][0] = 'Kendall';
nic['Sumas'][1] = 'Nooksack';
nic['Sumas'][2] = 'Nooksack Valley';
nic['Sumas'][3] = 'Sumas';
nic['Sumner'] = new Array();
nic['Sumner'][0] = 'Bonney Lake';
nic['Sumner'][1] = 'Bonney Lake/Buckley';
nic['Sumner'][2] = 'Bridlecreek';
nic['Sumner'][3] = 'Buckley';
nic['Sumner'][4] = 'Cedar Ridge';
nic['Sumner'][5] = 'Cedarview';
nic['Sumner'][6] = 'Church Lake';
nic['Sumner'][7] = 'Creekridge Glen';
nic['Sumner'][8] = 'Dieringer';
nic['Sumner'][9] = 'Downtown';
nic['Sumner'][10] = 'Driftwood Point';
nic['Sumner'][11] = 'Edgewood';
nic['Sumner'][12] = 'Grandview';
nic['Sumner'][13] = 'Highlands';
nic['Sumner'][14] = 'Inlet Island';
nic['Sumner'][15] = 'Lake Tapps';
nic['Sumner'][16] = 'Lakeridge';
nic['Sumner'][17] = 'Maplebrook';
nic['Sumner'][18] = 'Marabou';
nic['Sumner'][19] = 'Meadowvale';
nic['Sumner'][20] = 'Ne Lake Tapps';
nic['Sumner'][21] = 'Nw Lake Tapps';
nic['Sumner'][22] = 'Orting';
nic['Sumner'][23] = 'Pacific';
nic['Sumner'][24] = 'Ponderosa';
nic['Sumner'][25] = 'Ponderosa Estates';
nic['Sumner'][26] = 'Prairie Ridge';
nic['Sumner'][27] = 'Puyallup';
nic['Sumner'][28] = 'Rainier Manor';
nic['Sumner'][29] = 'Rhododendron Park';
nic['Sumner'][30] = 'Russellwood';
nic['Sumner'][31] = 'Sky Island';
nic['Sumner'][32] = 'South Auburn';
nic['Sumner'][33] = 'South Bonney Lk';
nic['Sumner'][34] = 'South Prairie';
nic['Sumner'][35] = 'South Sumner';
nic['Sumner'][36] = 'Sumner';
nic['Sumner'][37] = 'Sumner Valley';
nic['Sumner'][38] = 'Sw Lake Tapps';
nic['Sumner'][39] = 'Tapps Island';
nic['Sumner'][40] = 'Timber Ridge';
nic['Sumner'][41] = 'Wilderness';
nic['Sumner'][42] = 'Willow Brook';
nic['Sunnyside'] = new Array();
nic['Sunnyside'][0] = 'Grandview';
nic['Sunnyside'][1] = 'Sunnyside';
nic['Sunnyside'][2] = 'Yakima';
nic['Suquamish'] = new Array();
nic['Suquamish'][0] = 'Agate Point';
nic['Suquamish'][1] = 'Chief Seattle Park';
nic['Suquamish'][2] = 'Poulsbo';
nic['Suquamish'][3] = 'Suquamish';
nic['Suquamish'][4] = 'Suquamish Shores';
nic['Tacoma'] = new Array();
nic['Tacoma'][0] = 'American Lake';
nic['Tacoma'][1] = 'Bethel';
nic['Tacoma'][2] = 'Brookdale';
nic['Tacoma'][3] = 'Brooktree';
nic['Tacoma'][4] = 'Browns Point';
nic['Tacoma'][5] = 'Central Tacoma';
nic['Tacoma'][6] = 'Chambers Creek';
nic['Tacoma'][7] = 'Clover Park';
nic['Tacoma'][8] = 'Danbridge';
nic['Tacoma'][9] = 'Dash Point';
nic['Tacoma'][10] = 'Delong Park';
nic['Tacoma'][11] = 'East Tacoma';
nic['Tacoma'][12] = 'Fairway Estates';
nic['Tacoma'][13] = 'Federal Way';
nic['Tacoma'][14] = 'Fern Hill';
nic['Tacoma'][15] = 'Fife';
nic['Tacoma'][16] = 'Fife Heights';
nic['Tacoma'][17] = 'Fircrest';
nic['Tacoma'][18] = 'Frederickson';
nic['Tacoma'][19] = 'Graham';
nic['Tacoma'][20] = 'Gravelly Lake';
nic['Tacoma'][21] = 'Harbor Ridge';
nic['Tacoma'][22] = 'Highlands';
nic['Tacoma'][23] = 'Hillsdale';
nic['Tacoma'][24] = 'Hilltop';
nic['Tacoma'][25] = 'Indian Addition';
nic['Tacoma'][26] = 'Lake City';
nic['Tacoma'][27] = 'Lake Louise';
nic['Tacoma'][28] = 'Lake Park';
nic['Tacoma'][29] = 'Lake Steilacoom';
nic['Tacoma'][30] = 'Lakeview';
nic['Tacoma'][31] = 'Lakewood';
nic['Tacoma'][32] = 'Larchmont';
nic['Tacoma'][33] = 'Lincoln';
nic['Tacoma'][34] = 'Manitou';
nic['Tacoma'][35] = 'McKinley';
nic['Tacoma'][36] = 'Midland';
nic['Tacoma'][37] = 'Milton';
nic['Tacoma'][38] = 'Narrows';
nic['Tacoma'][39] = 'Ne Tacoma';
nic['Tacoma'][40] = 'New Tacoma';
nic['Tacoma'][41] = 'North Tacoma';
nic['Tacoma'][42] = 'Northshore';
nic['Tacoma'][43] = 'Oakbrook';
nic['Tacoma'][44] = 'Oakland';
nic['Tacoma'][45] = 'Oaks Addition';
nic['Tacoma'][46] = 'Old Town';
nic['Tacoma'][47] = 'Parkland';
nic['Tacoma'][48] = 'Point Defiance';
nic['Tacoma'][49] = 'Port of Tacoma';
nic['Tacoma'][50] = 'Proctor';
nic['Tacoma'][51] = 'Puyallup';
nic['Tacoma'][52] = 'Radiance';
nic['Tacoma'][53] = 'Ruston';
nic['Tacoma'][54] = 'S Federal Way';
nic['Tacoma'][55] = 'Se Tacoma';
nic['Tacoma'][56] = 'South Federal Way';
nic['Tacoma'][57] = 'South Hill';
nic['Tacoma'][58] = 'South Tacoma';
nic['Tacoma'][59] = 'Spanaway';
nic['Tacoma'][60] = 'Spanaway Lake';
nic['Tacoma'][61] = 'Steilacoom';
nic['Tacoma'][62] = 'Summit';
nic['Tacoma'][63] = 'Sunrise';
nic['Tacoma'][64] = 'Swan Creek';
nic['Tacoma'][65] = 'Tacoma';
nic['Tacoma'][66] = 'Tacoma Mall';
nic['Tacoma'][67] = 'Tillicum';
nic['Tacoma'][68] = 'University Place';
nic['Tacoma'][69] = 'Ups';
nic['Tacoma'][70] = 'Wapato';
nic['Tacoma'][71] = 'Westgate';
nic['Taholah'] = new Array();
nic['Taholah'][0] = 'Ocean Shores';
nic['Taholah'][1] = 'Taholah';
nic['Tahuya'] = new Array();
nic['Tahuya'][0] = 'Belfair';
nic['Tahuya'][1] = 'Collins Lake';
nic['Tahuya'][2] = 'Dewatto';
nic['Tahuya'][3] = 'Haven Lake';
nic['Tahuya'][4] = 'Hood Canal';
nic['Tahuya'][5] = 'Maggie Lake';
nic['Tahuya'][6] = 'North Shore';
nic['Tahuya'][7] = 'Shorebrook';
nic['Tahuya'][8] = 'Tahuya';
nic['Tahuya'][9] = 'Tahuya River';
nic['Tahuya'][10] = 'Tahuya River Valley';
nic['Tahuya'][11] = 'Tee Lake';
nic['Tahuya'][12] = 'Wooten Lake';
nic['Tenino'] = new Array();
nic['Tenino'][0] = 'Bucoda';
nic['Tenino'][1] = 'Grand Mound';
nic['Tenino'][2] = 'Loma Vista';
nic['Tenino'][3] = 'Maytown';
nic['Tenino'][4] = 'McIntosh Lake';
nic['Tenino'][5] = 'McIntosh Ridge';
nic['Tenino'][6] = 'Offut Lake';
nic['Tenino'][7] = 'Olympia';
nic['Tenino'][8] = 'Rainier Rural';
nic['Tenino'][9] = 'Rochester';
nic['Tenino'][10] = 'Rural';
nic['Tenino'][11] = 'Tenino';
nic['Tenino'][12] = 'Tumwater';
nic['Tenino'][13] = 'Yelm';
nic['Tenino'][14] = 'Yelm Rural';
nic['Thorp'] = new Array();
nic['Thorp'][0] = 'Cle Elum';
nic['Thorp'][1] = 'Rural - West';
nic['Thorp'][2] = 'Thorp';
nic['Tieton'] = new Array();
nic['Tieton'][0] = 'Tieton';
nic['Tieton'][1] = 'Yakima';
nic['Tokeland'] = new Array();
nic['Tokeland'][0] = 'Tokeland';
nic['Toledo'] = new Array();
nic['Toledo'][0] = 'Centralia';
nic['Toledo'][1] = 'Ethel';
nic['Toledo'][2] = 'Jackson';
nic['Toledo'][3] = 'Onalaska';
nic['Toledo'][4] = 'Rural';
nic['Toledo'][5] = 'Toledo';
nic['Toledo'][6] = 'Vader';
nic['Toledo'][7] = 'Westside Hwy';
nic['Toledo'][8] = 'Winlock';
nic['Tonasket'] = new Array();
nic['Tonasket'][0] = 'Aeneas';
nic['Tonasket'][1] = 'Aeneas Valley';
nic['Tonasket'][2] = 'Antoine Creek';
nic['Tonasket'][3] = 'Bonaparte';
nic['Tonasket'][4] = 'Cayuse Mountain';
nic['Tonasket'][5] = 'Chewilikan';
nic['Tonasket'][6] = 'Cougar Creek';
nic['Tonasket'][7] = 'Crumbacher';
nic['Tonasket'][8] = 'Ellisforde';
nic['Tonasket'][9] = 'Havillah';
nic['Tonasket'][10] = 'Havillah Road';
nic['Tonasket'][11] = 'Highway 20';
nic['Tonasket'][12] = 'Loomis';
nic['Tonasket'][13] = 'Mount Hull';
nic['Tonasket'][14] = 'Okanogan';
nic['Tonasket'][15] = 'Omak';
nic['Tonasket'][16] = 'Oroville';
nic['Tonasket'][17] = 'Pine Creek';
nic['Tonasket'][18] = 'Spectacle';
nic['Tonasket'][19] = 'Tonasket';
nic['Tonasket'][20] = 'Toroda Creek';
nic['Tonasket'][21] = 'Wannacut';
nic['Tonasket'][22] = 'Yakima';
nic['Toppenish'] = new Array();
nic['Toppenish'][0] = 'Toppenish';
nic['Toppenish'][1] = 'Yakima';
nic['Touchet'] = new Array();
nic['Touchet'][0] = 'Lowden';
nic['Toutle'] = new Array();
nic['Toutle'][0] = 'Silverlake';
nic['Toutle'][1] = 'St Helens';
nic['Toutle'][2] = 'Toutle';
nic['Tracyton'] = new Array();
nic['Tracyton'][0] = 'Tracyton';
nic['Tukwila'] = new Array();
nic['Tukwila'][0] = 'Allentown';
nic['Tukwila'][1] = 'Burien';
nic['Tukwila'][2] = 'Campbell Hill';
nic['Tukwila'][3] = 'Duwamish';
nic['Tukwila'][4] = 'Foster';
nic['Tukwila'][5] = 'McMicken Heights';
nic['Tukwila'][6] = 'Riverton';
nic['Tukwila'][7] = 'Seatac';
nic['Tukwila'][8] = 'Seattle';
nic['Tukwila'][9] = 'Skyway';
nic['Tukwila'][10] = 'Southcenter';
nic['Tukwila'][11] = 'Thorndyke';
nic['Tukwila'][12] = 'Tukwila';
nic['Tukwila'][13] = 'Upper Rainier Beach';
nic['Tulalip'] = new Array();
nic['Tulalip'][0] = 'John Sam Lake';
nic['Tulalip'][1] = 'Marine Drive';
nic['Tulalip'][2] = 'Marysville';
nic['Tulalip'][3] = 'Priest Point';
nic['Tulalip'][4] = 'Sunny Shores';
nic['Tulalip'][5] = 'Tulalip';
nic['Tulalip'][6] = 'Tulalip Bay';
nic['Tulalip'][7] = 'Tulalip Shores';
nic['Tulalip'][8] = 'Tulare Beach';
nic['Tumwater'] = new Array();
nic['Tumwater'][0] = 'Black Lake';
nic['Tumwater'][1] = 'Bush Prairie';
nic['Tumwater'][2] = 'Carlyon';
nic['Tumwater'][3] = 'Cooper Point';
nic['Tumwater'][4] = 'Delphi';
nic['Tumwater'][5] = 'East Olympia';
nic['Tumwater'][6] = 'Goldcreek';
nic['Tumwater'][7] = 'Hewitt Lake';
nic['Tumwater'][8] = 'Littlerock';
nic['Tumwater'][9] = 'Mottman';
nic['Tumwater'][10] = 'Olympia';
nic['Tumwater'][11] = 'Scott Lake';
nic['Tumwater'][12] = 'Tumwater';
nic['Tumwater'][13] = 'Tumwater Hill';
nic['Tumwater'][14] = 'Ward Lake';
nic['Tumwater'][15] = 'Westside';
nic['Twisp'] = new Array();
nic['Twisp'][0] = 'Carlton';
nic['Twisp'][1] = 'East County Rd';
nic['Twisp'][2] = 'Methow';
nic['Twisp'][3] = 'Okanogan';
nic['Twisp'][4] = 'Twisp';
nic['Twisp'][5] = 'Twisp River';
nic['Twisp'][6] = 'Twisp River Rd';
nic['Twisp'][7] = 'Twisp South';
nic['Twisp'][8] = 'West County Rd';
nic['Twisp'][9] = 'Winthrop';
nic['Twisp'][10] = 'Winthrop South';
nic['Union'] = new Array();
nic['Union'][0] = 'Alderbrook';
nic['Union'][1] = 'Enchantment Ridge';
nic['Union'][2] = 'Hood Canal';
nic['Union'][3] = 'Mason Lake';
nic['Union'][4] = 'Shelton';
nic['Union'][5] = 'South Shore';
nic['Union'][6] = 'Twanoh';
nic['Union'][7] = 'Union';
nic['Union'][8] = 'Union Heights';
nic['Union'][9] = 'Webb Hill';
nic['Union Gap'] = new Array();
nic['Union Gap'][0] = 'Union Gap';
nic['Union Gap'][1] = 'Yakima';
nic['Uniontown'] = new Array();
nic['Uniontown'][0] = 'Pullman';
nic['University Place'] = new Array();
nic['University Place'][0] = 'Berkshire';
nic['University Place'][1] = 'Bristonwood';
nic['University Place'][2] = 'Chambers Creek';
nic['University Place'][3] = 'Curtis';
nic['University Place'][4] = 'Danbridge';
nic['University Place'][5] = 'Day Island';
nic['University Place'][6] = 'Fircrest';
nic['University Place'][7] = 'Manitou';
nic['University Place'][8] = 'Menlo Park';
nic['University Place'][9] = 'Park Ridge';
nic['University Place'][10] = 'Sunset Beach';
nic['University Place'][11] = 'Tacoma';
nic['University Place'][12] = 'Twin Hills';
nic['University Place'][13] = 'University Place';
nic['University Place'][14] = 'Ups';
nic['Usk'] = new Array();
nic['Usk'][0] = 'Usk';
nic['Vader'] = new Array();
nic['Vader'][0] = 'Enchanted Valley';
nic['Vader'][1] = 'Napavine';
nic['Vader'][2] = 'Rural';
nic['Vader'][3] = 'Vader';
nic['Vader'][4] = 'Winlock';
nic['Valley'] = new Array();
nic['Valley'][0] = 'Springdale';
nic['Valley'][1] = 'Valley';
nic['Valleyford'] = new Array();
nic['Valleyford'][0] = 'Spokane';
nic['Vancouver'] = new Array();
nic['Vancouver'][0] = 'Anderson Island';
nic['Vancouver'][1] = 'Arnada';
nic['Vancouver'][2] = 'Barberton';
nic['Vancouver'][3] = 'Barbeton';
nic['Vancouver'][4] = 'Battle Ground';
nic['Vancouver'][5] = 'Battleground';
nic['Vancouver'][6] = 'Blueberry Hill';
nic['Vancouver'][7] = 'Brush Prairie';
nic['Vancouver'][8] = 'Camas';
nic['Vancouver'][9] = 'Carter Park';
nic['Vancouver'][10] = 'Cascade Park';
nic['Vancouver'][11] = 'Cedars';
nic['Vancouver'][12] = 'Clark College';
nic['Vancouver'][13] = 'Columbia Shores';
nic['Vancouver'][14] = 'Cozy Camp';
nic['Vancouver'][15] = 'Downtown Vancouver';
nic['Vancouver'][16] = 'Dubois Park';
nic['Vancouver'][17] = 'East County';
nic['Vancouver'][18] = 'East Orchard';
nic['Vancouver'][19] = 'Ellsworth';
nic['Vancouver'][20] = 'Erickson Farm';
nic['Vancouver'][21] = 'Evergreen Highway';
nic['Vancouver'][22] = 'Fairgrounds';
nic['Vancouver'][23] = 'Fairway Village';
nic['Vancouver'][24] = 'Felida';
nic['Vancouver'][25] = 'Fern Prairie';
nic['Vancouver'][26] = 'Fife Heights';
nic['Vancouver'][27] = 'Fishers Landing';
nic['Vancouver'][28] = 'Five Corners';
nic['Vancouver'][29] = 'Fruit Valley';
nic['Vancouver'][30] = 'Grass Valley';
nic['Vancouver'][31] = 'Hazel Dell';
nic['Vancouver'][32] = 'Hearthwood';
nic['Vancouver'][33] = 'Heathergate';
nic['Vancouver'][34] = 'Heights';
nic['Vancouver'][35] = 'Hockinson';
nic['Vancouver'][36] = 'La Center';
nic['Vancouver'][37] = 'Lake Josephine';
nic['Vancouver'][38] = 'Lakeshore';
nic['Vancouver'][39] = 'Legacy Hospital';
nic['Vancouver'][40] = 'Lincoln';
nic['Vancouver'][41] = 'McLoughlan Heights';
nic['Vancouver'][42] = 'McLoughlin Heights';
nic['Vancouver'][43] = 'Meadowglade';
nic['Vancouver'][44] = 'Mill Plain';
nic['Vancouver'][45] = 'Minnehaha';
nic['Vancouver'][46] = 'Mt. Vista';
nic['Vancouver'][47] = 'Orchards';
nic['Vancouver'][48] = 'Pleasant Valley';
nic['Vancouver'][49] = 'Proebstel';
nic['Vancouver'][50] = 'Prune Hill';
nic['Vancouver'][51] = 'Ridgefield';
nic['Vancouver'][52] = 'Rosemere';
nic['Vancouver'][53] = 'Royal Oaks';
nic['Vancouver'][54] = 'Salmon Creek';
nic['Vancouver'][55] = 'Sherwood';
nic['Vancouver'][56] = 'Shumway';
nic['Vancouver'][57] = 'Sifton';
nic['Vancouver'][58] = 'South Cliff';
nic['Vancouver'][59] = 'SW Washington Medical Center';
nic['Vancouver'][60] = 'Vancouver';
nic['Vancouver'][61] = 'Vancouver Mall';
nic['Vancouver'][62] = 'Walnut Grove';
nic['Vancouver'][63] = 'Washougal';
nic['Vancouver'][64] = 'Whipple Creek';
nic['Vancouver'][65] = 'WSU';
nic['Vancouver'][66] = 'Yacolt';
nic['Vantage'] = new Array();
nic['Vantage'][0] = 'Vantage';
nic['Vashon'] = new Array();
nic['Vashon'][0] = 'Burton';
nic['Vashon'][1] = 'Burton Peninsula';
nic['Vashon'][2] = 'Camp Sealth';
nic['Vashon'][3] = 'Cedarhurst';
nic['Vashon'][4] = 'Center';
nic['Vashon'][5] = 'Colvos';
nic['Vashon'][6] = 'Cove';
nic['Vashon'][7] = 'Dilworth';
nic['Vashon'][8] = 'Dockton';
nic['Vashon'][9] = 'Ellisport';
nic['Vashon'][10] = 'Fauntleroy';
nic['Vashon'][11] = 'Glen Acres';
nic['Vashon'][12] = 'Gold Beach';
nic['Vashon'][13] = 'In Town';
nic['Vashon'][14] = 'Lisabeula';
nic['Vashon'][15] = 'Magnolia Beach';
nic['Vashon'][16] = 'Manzanita';
nic['Vashon'][17] = 'Maury Island';
nic['Vashon'][18] = 'North Maury';
nic['Vashon'][19] = 'North Tacoma';
nic['Vashon'][20] = 'Northend';
nic['Vashon'][21] = 'Point Robinson';
nic['Vashon'][22] = 'Portage';
nic['Vashon'][23] = 'Spring Beach';
nic['Vashon'][24] = 'Sunset Beach';
nic['Vashon'][25] = 'Tahlequah';
nic['Vashon'][26] = 'Tramp Harbor';
nic['Vashon'][27] = 'Vashon Heights';
nic['Vashon'][28] = 'Vashon Island';
nic['Vashon'][29] = 'West Seattle';
nic['Vashon'][30] = 'Westside';
nic['Vaughn'] = new Array();
nic['Vaughn'][0] = 'Dutcher\'s Cove';
nic['Vaughn'][1] = 'Elgin';
nic['Vaughn'][2] = 'Gig Harbor';
nic['Vaughn'][3] = 'Key Center';
nic['Vaughn'][4] = 'Key Peninsula';
nic['Vaughn'][5] = 'Key Peninsula North';
nic['Vaughn'][6] = 'North Vaughn';
nic['Vaughn'][7] = 'Rocky Bay';
nic['Vaughn'][8] = 'South Vaughn';
nic['Vaughn'][9] = 'Vaughn';
nic['Waitsburg'] = new Array();
nic['Waitsburg'][0] = 'Dayton';
nic['Waitsburg'][1] = 'Walla Walla';
nic['Waldron Island'] = new Array();
nic['Waldron Island'][0] = 'Waldron';
nic['Walla Walla'] = new Array();
nic['Walla Walla'][0] = 'Walla Walla';
nic['Wapato'] = new Array();
nic['Wapato'][0] = 'Wapato';
nic['Wapato'][1] = 'Yakima';
nic['Warden'] = new Array();
nic['Warden'][0] = 'Hwy 17 South';
nic['Warden'][1] = 'Moses Lake';
nic['Warden'][2] = 'Othello';
nic['Warden'][3] = 'Potholes';
nic['Warden'][4] = 'Warden';
nic['Washougal'] = new Array();
nic['Washougal'][0] = 'Camas';
nic['Washougal'][1] = 'Evergreen Highway';
nic['Washougal'][2] = 'Fern Prairie';
nic['Washougal'][3] = 'Orchard Hills';
nic['Washougal'][4] = 'Skamania';
nic['Washougal'][5] = 'Vancouver';
nic['Washougal'][6] = 'Washougal';
nic['Washtucna'] = new Array();
nic['Washtucna'][0] = 'Washtucna';
nic['Waterville'] = new Array();
nic['Waterville'][0] = 'Chelan Falls';
nic['Waterville'][1] = 'Coulee City';
nic['Waterville'][2] = 'Ephrata';
nic['Waterville'][3] = 'Rimrock';
nic['Waterville'][4] = 'Waterville';
nic['Waterville'][5] = 'Wenatchee';
nic['Wauconda'] = new Array();
nic['Wauconda'][0] = 'Chesaw';
nic['Wauconda'][1] = 'Cougar Creek';
nic['Wauconda'][2] = 'Curlew';
nic['Wauconda'][3] = 'Havillah';
nic['Wauconda'][4] = 'Okanogan';
nic['Wauconda'][5] = 'Republic';
nic['Wauconda'][6] = 'Taroda Creek';
nic['Wauconda'][7] = 'Tonasket';
nic['Wauconda'][8] = 'Toroda Creek';
nic['Wauna'] = new Array();
nic['Wauna'][0] = 'Gig Harbor';
nic['Wenatchee'] = new Array();
nic['Wenatchee'][0] = 'Blewett';
nic['Wenatchee'][1] = 'Cachmere';
nic['Wenatchee'][2] = 'Chelan';
nic['Wenatchee'][3] = 'East Wenatchee';
nic['Wenatchee'][4] = 'Grant Road Addition';
nic['Wenatchee'][5] = 'Leavenworth';
nic['Wenatchee'][6] = 'Wenatchee';
nic['Wenatchee'][7] = 'West Wenatchee';
nic['West Richland'] = new Array();
nic['West Richland'][0] = 'Benton';
nic['West Richland'][1] = 'Richland';
nic['Westport'] = new Array();
nic['Westport'][0] = 'Cohasset Beach';
nic['Westport'][1] = 'Grayland';
nic['Westport'][2] = 'Lighthouse';
nic['Westport'][3] = 'Ocosta';
nic['Westport'][4] = 'Peterson';
nic['Westport'][5] = 'Westhaven';
nic['Westport'][6] = 'Westport';
nic['Westport'][7] = 'Westport Beach';
nic['Whidbey Island'] = new Array();
nic['Whidbey Island'][0] = 'Bayview';
nic['Whidbey Island'][1] = 'Clinton';
nic['Whidbey Island'][2] = 'Goss Lake';
nic['Whidbey Island'][3] = 'Greenbank';
nic['Whidbey Island'][4] = 'Northgate Terrace';
nic['White Pass'] = new Array();
nic['White Pass'][0] = 'Timberline';
nic['White Swan'] = new Array();
nic['White Swan'][0] = 'Toppenish';
nic['White Swan'][1] = 'Yakima';
nic['Wilbur'] = new Array();
nic['Wilbur'][0] = 'Roosevelt Lake Ranch';
nic['Wilbur'][1] = 'Wilbur';
nic['Wilkeson'] = new Array();
nic['Wilkeson'][0] = 'Buckley';
nic['Wilkeson'][1] = 'Carbonado';
nic['Wilkeson'][2] = 'Wilkeson';
nic['Wilson Creek'] = new Array();
nic['Wilson Creek'][0] = 'Soap Lake';
nic['Wilson Creek'][1] = 'Wilson Creek';
nic['Winlock'] = new Array();
nic['Winlock'][0] = 'Evaline';
nic['Winlock'][1] = 'Napavine';
nic['Winlock'][2] = 'Onalaska';
nic['Winlock'][3] = 'Rural';
nic['Winlock'][4] = 'Toledo';
nic['Winlock'][5] = 'Vader';
nic['Winlock'][6] = 'Winlock';
nic['Winthrop'] = new Array();
nic['Winthrop'][0] = 'East Chewuch';
nic['Winthrop'][1] = 'East County Rd';
nic['Winthrop'][2] = 'Edelweiss';
nic['Winthrop'][3] = 'Mazama';
nic['Winthrop'][4] = 'Methow';
nic['Winthrop'][5] = 'Pine Forest';
nic['Winthrop'][6] = 'Rendezvous';
nic['Winthrop'][7] = 'Twin Lakes';
nic['Winthrop'][8] = 'Twisp';
nic['Winthrop'][9] = 'West Chewuch';
nic['Winthrop'][10] = 'Winthrop';
nic['Winthrop'][11] = 'Winthrop South';
nic['Winthrop'][12] = 'Wolf Creek';
nic['Woodinville'] = new Array();
nic['Woodinville'][0] = 'Aspenwood';
nic['Woodinville'][1] = 'Avondale';
nic['Woodinville'][2] = 'Bear Creek';
nic['Woodinville'][3] = 'Bear Creek Country Club';
nic['Woodinville'][4] = 'Bothell';
nic['Woodinville'][5] = 'Brook Trails Estates';
nic['Woodinville'][6] = 'Brookside';
nic['Woodinville'][7] = 'Canyon Park';
nic['Woodinville'][8] = 'Cherry Hill';
nic['Woodinville'][9] = 'Clearview';
nic['Woodinville'][10] = 'Cottage Lake';
nic['Woodinville'][11] = 'Crystal Lake';
nic['Woodinville'][12] = 'Downtown Woodinville';
nic['Woodinville'][13] = 'East Woodinville';
nic['Woodinville'][14] = 'Echo Lake';
nic['Woodinville'][15] = 'English Hill';
nic['Woodinville'][16] = 'Highlands';
nic['Woodinville'][17] = 'Hollywood Hill';
nic['Woodinville'][18] = 'Huntington';
nic['Woodinville'][19] = 'Juanita';
nic['Woodinville'][20] = 'Kingsgate';
nic['Woodinville'][21] = 'Kirkland';
nic['Woodinville'][22] = 'Lake Of The Woods';
nic['Woodinville'][23] = 'Lake Tuck';
nic['Woodinville'][24] = 'Leota';
nic['Woodinville'][25] = 'Maltby';
nic['Woodinville'][26] = 'North Creek';
nic['Woodinville'][27] = 'Novelty Hill';
nic['Woodinville'][28] = 'Paradise Lake';
nic['Woodinville'][29] = 'Redmond';
nic['Woodinville'][30] = 'Reintree';
nic['Woodinville'][31] = 'Ring Hill';
nic['Woodinville'][32] = 'Saybrook';
nic['Woodinville'][33] = 'Serena Estates';
nic['Woodinville'][34] = 'Snohomish';
nic['Woodinville'][35] = 'Sw Woodinville';
nic['Woodinville'][36] = 'Thrashers Corner';
nic['Woodinville'][37] = 'Tolt';
nic['Woodinville'][38] = 'Totem Lake';
nic['Woodinville'][39] = 'Tuscany';
nic['Woodinville'][40] = 'Wellington';
nic['Woodinville'][41] = 'Wembley Park';
nic['Woodinville'][42] = 'West Woodinville';
nic['Woodinville'][43] = 'Woodinville';
nic['Woodinville'][44] = 'Woodinville High School';
nic['Woodland'] = new Array();
nic['Woodland'][0] = 'Cardai Hill';
nic['Woodland'][1] = 'Hayes';
nic['Woodland'][2] = 'Kalama';
nic['Woodland'][3] = 'La Center';
nic['Woodland'][4] = 'Lake Merwin';
nic['Woodland'][5] = 'NE County';
nic['Woodland'][6] = 'Puyallup';
nic['Woodland'][7] = 'Rose Valley';
nic['Woodland'][8] = 'Vancouver';
nic['Woodland'][9] = 'Woodland';
nic['Woodland'][10] = 'Woodland City';
nic['Woodway'] = new Array();
nic['Woodway'][0] = 'Edmonds';
nic['Woodway'][1] = 'Richmond Beach';
nic['Woodway'][2] = 'Seattle';
nic['Woodway'][3] = 'Shoreline';
nic['Woodway'][4] = 'Woodway';
nic['Woodway'][5] = 'Woodway Park';
nic['Yacolt'] = new Array();
nic['Yacolt'][0] = 'Battle Ground';
nic['Yacolt'][1] = 'Battle Ground Lake';
nic['Yacolt'][2] = 'E Fork Lewis River';
nic['Yacolt'][3] = 'Farger Lake';
nic['Yacolt'][4] = 'La Center';
nic['Yacolt'][5] = 'Larch Mountain';
nic['Yacolt'][6] = 'Lucia Falls';
nic['Yacolt'][7] = 'Mid Central';
nic['Yacolt'][8] = 'Vancouver';
nic['Yacolt'][9] = 'Yacolt';
nic['Yakima'] = new Array();
nic['Yakima'][0] = 'Ahtanum';
nic['Yakima'][1] = 'Cowiche';
nic['Yakima'][2] = 'East Selah';
nic['Yakima'][3] = 'Gleed';
nic['Yakima'][4] = 'Naches';
nic['Yakima'][5] = 'Selah';
nic['Yakima'][6] = 'Tampico';
nic['Yakima'][7] = 'Terrace Heights';
nic['Yakima'][8] = 'Union Gap';
nic['Yakima'][9] = 'West Side';
nic['Yakima'][10] = 'West Valley';
nic['Yakima'][11] = 'Yakima';
nic['Yakima'][12] = 'Yakima Firing Center';
nic['Yarrow Point'] = new Array();
nic['Yarrow Point'][0] = 'Yarrow Point';
nic['Yelm'] = new Array();
nic['Yelm'][0] = '5 Corners';
nic['Yelm'][1] = 'Bald Hills';
nic['Yelm'][2] = 'Clear Lake';
nic['Yelm'][3] = 'Clearwood';
nic['Yelm'][4] = 'Highlands';
nic['Yelm'][5] = 'Hobby Acres';
nic['Yelm'][6] = 'Lake Lawrence';
nic['Yelm'][7] = 'Nisqually Pines';
nic['Yelm'][8] = 'Nisqually River';
nic['Yelm'][9] = 'Olympia';
nic['Yelm'][10] = 'Rainier';
nic['Yelm'][11] = 'Rainier Rural';
nic['Yelm'][12] = 'Roy';
nic['Yelm'][13] = 'Vail';
nic['Yelm'][14] = 'Yelm';
nic['Yelm'][15] = 'Yelm Rural';
nic['Zillah'] = new Array();
nic['Zillah'][0] = 'Yakima';
nic['Zillah'][1] = 'Zillah';

