function ajax_marked(str){ 

 $.post( str , function(data){
  if (data.length>0){ 
    $("#tagusers").html(data); 
  } 
 }) 
}