(function($){
$.fn.lang = function(opts) {
    var defaults = {
        change: null,
        url: 'layout/lingua',
        data: 'sigla='
    };
    var options = $.extend(defaults, opts);
    this.change(function() {
        var lingua = $('.lingua option:selected').val();
        $.ajax({
            type: 'POST',
            url: options.url,
            data: options.data + lingua,
            success: function(){
                if(options.change)
                    options.change();
            }
        });
    });
};
})(jQuery);
