YAHOO.util.Event.addListener("county","change",

function(){

var county = YAHOO.util.Dom.get("county");

if(county.value){
    location.href = county.value;
}
}


);

YAHOO.util.Event.addListener("county_form","submit",

function(){

return false;
}


);


