function categorySwitch(selectElm) {
    var selectedOptionVal = selectElm.options[selectElm.selectedIndex].value;
    if (selectedOptionVal.indexOf('/') === 0) {
        window.location.href = selectedOptionVal;
    }
}
