function personsSelectClick(id,text)
{
	//alert(text);
	$('#flat').html(text);
//	alert(text);
	$.post("/ajaxPersons.php", 
			{    o : "personsSelectClick",
		         id: id			
			}, function(data){
				
				$('#news_list_container').html(data);
				
			});
	$.post("/ajaxPersons.php", 
			{    o : "personsSelectClick_navLine",
		         id: id			
			}, function(data2){
				$('#nav_line_container').html(data2);
				
			});
	
}         