function orderby(sel) {
  var url = sel.options[sel.selectedIndex].value;
  if (url.indexOf('http') != 0) {
    url = "/hud_homes.html/" + url;
  }
  location.href = url;
}
