
function switchToArea(url,form)
{
  var index=form.slug.selectedIndex
  if (form.slug.options[index].value != "0")
  {
    location=url+'/'+form.slug.options[index].value;
  }
}
