//WAT ERG

function change_cat()
{
    var elm = document.getElementById('cat_name');
    //var name = elm[elm.selectedIndex].label;
    var id = elm[elm.selectedIndex].value;

    if(id)
    {
        window.location = URL+'product_cat/'+id;
    }
}
