    
    function ChangeRegion(pSelect, strUrl)    
    {    
        if(pSelect.value != '')
        {
            strUrl = strUrl.replace('category/', 'category/' + pSelect.value + '/');     
        }    
        location.replace(strUrl);
    }   
    
