function createMenus ( county, town ) {


//	region.length = menu1.length;
	county.length = counties.length;
	town.length = 1;
	
	// Set up a default value
//	region.options[0].value =  default_region_value; 
//	region.options[0].text =  default_region_text; 
	county.options[0].value =  default_county_value; 
	county.options[0].text =  default_county_text;
	county.disabled = false; 
	town.options[0].value =  default_town_value; 
	town.options[0].text =  default_town_text;
	town.disabled = true; 
	
	var found = false;
	
    for ( var i=1; i < counties.length; i++ ) {
         county.options[i].value  = counties[i];
         county.options[i].text   = counties[i];
         if( found == false && selected_county != null && selected_county == counties[i] )
         {
        	county.options[i].selected = true;
			town.disabled = false; 
        	selected_county = i;
        	found = true;
         }
    }

	// If we have a selected_value for region then we need to show this menu
	if( found == true && selected_county != null )
	{
		found = false;

		town.length = towns[selected_county].length;

	    for (var x=1; x < towns[selected_county].length; x++) {
 	        town.options[x].text = towns[selected_county][x];
  	       town.options[x].value = towns[selected_county][x];

         if( found == false && selected_town != null && selected_town == towns[selected_county][x] )
         {
        	town.options[x].selected = true;
			selected_town = x;
        	found = true;
         }
		}
   	}         

}
