
function schoolReportsSelect(id,text)
{
	//alert(text);
	$('#flat').html(text);
	//alert(id);
	$.post("/ajaxReport.php", 
			{    o : "SelectChange",
		         id: id			
			}, function(data){
				//alert(data)
				$('#news_list_container').html(data);
				checkedImgBorder();
			});
	$.post("/ajaxReport.php", 
			{    o : "SelectChange_navLine",
		         id: id			
			}, function(data2){
				$('#nav_line_container').html(data2);
				
			});
	
} 