$(document).ready(function() {
    $("#footer_lang_href").click(
    function() {
        $("#footer_lang_href").css("display", "none");
        $("#footer_lang_sel").css("visibility", "visible");
        $("#footer_lang_sel").css("display", "inline-block");
    }
    );

    $("#footer_lang_sel").change(
    function() {
        //alert("lang_redirect_index.php?lang=" + $("#footer_lang_sel").val());
        window.location = "lang_redirect_index.php?lang=" + $("#footer_lang_sel").val();
    }
    );

});