$(document).ready(function()
{
    $("#users_list").submit(function(){

            $('.filter').find(':checkbox:first:not(:checked)').each(function()
            {
                var ch_box = $(this);//$('[name='+$(this).val()+'_checkbox]');
                ch_box.parent().parent().hide();

                select = document.getElementById('add_filter_select');
                $("#add_filter_select [value='"+ $(this).attr('name') +"']").attr('disabled', false);
            });

            $('#user_list_area_div').load($('#users_list').attr('action'), $('#users_list').serialize(), function(){ 
                addActionsToClasses(); 
                $('#img_loading').hide();
            });
            return false;
    });
});
