﻿
  function navigateToTheatreSelection(oEl) 
        {    
            var host1=document.domain;
            if(host1=="localhost"){
            host1="localhost:1122";
            }
                //document.location = document.location + '&r=neighborhood%3A%22' + oEl.options[oEl.selectedIndex].value + '%22';
                if(oEl.options[oEl.selectedIndex].value != "-99"){
                    document.location = "http://"+host1 + oEl.options[oEl.selectedIndex].value 
                    return true;
                }
        }    