function processLS(o){
	$('#glf-counter').remove();
	$.post('/api/livesearch',$('#podbor').serialize(),function(data){
		var result = eval('('+data+')');
		
		var link = ' ';
		
		if(result.count>0){
			link = '<a id="gl_filters_form_link" href="/podbor/'+result.link+'/">Показать</a>';
		}
		
		var obj = $('<div  id="glf-counter">'
					+'<div style="position: absolute; left: 100%; width: 8px; height: 25px;  overflow: hidden;">'
					+'<img style="margin-top: -3px; width: 7px; height: 30px;" src="/pics/glf-tentacle.gif"></div>'
					+'<div id="glf-counter-inner">Найдено <b>'+result.count+'</b> моделей '+link
				+'</div>'
				+'</div>');
	
		var position = $(o).position();
		$(obj).css({
			'top':position.top+5,
			'right':187
			});
			
		$('#podbor').append(obj);
		
				
	})
}





