$('#filter_form').submit(function(e){
var str = $(this).serialize();
$.ajax({
type: "POST",
url: "./",
data: str,
success: function(result){
$('#users_wrap').html(result);
}
});
return false;
});