function vote(id, cs) {
$.get('/advperson/vote/voted.html?ajax=true&id_user=' + id, function(data) {
  $('#result' + cs + id).html(data);
 if($.trim(data)=='Голос учтён')
  {
     var val = parseInt($('#ratingId' + cs + id).html());
val++;

$('#ratingId' + cs + id).html(val);
  }
});
}
