$(document).ready(function(){
    $("select#languages").change(function () {
        var value= $("select#languages option:selected:first").attr('value');
        if(value){
            var pathname = window.location.pathname;
            document.location="/"+value+pathname.substr(3);
        }
        
    })
});

