function doSearch()
{
	var serial = $('#searchFRM').serialize();
	document.location.href = pageURL + '&' + serial;
}

$(document).ready(function(){
	
	$('select[name=yazran]').change(function(){
		
		$('select[name=yazran2]').html('');
		
		$.get("index.php?module=Listings&pname=getYazran2&pmode=empg","parentID=" + $(this).val(),function(msg){
			$('#ajaxWin').append(msg); //alert(msg); 
			//$('select[name=yazran2]').resetSS();			
		});
		
	});

});
