
function designersByCountry(sel) {
    var country = sel.options[sel.selectedIndex].value;
    if ( !country ) return;
    country = country.split(' ').join('_');
    self.location.href = '/webdesigners/by-country/' + country;
}
