
				
				$(document).ready(function()
				{
					
					$("#search_btn").hide();
					   						
  					$("select").bind("change", function(e) 
   					{
   						var qs = "";
   						
   						$( "#selects select" ).each
   						(
   							function() 
   							{
   								if ( this.value != "" )
   								{
   									qs += this.name + "=" + this.value + "&";
   								}  						
   							}
   						);
   						
						$("#news_content").load("/news?" + qs + " #news_data", {}, function() 
	   					{
	   													
	   					});
   					});
 				}); 
				
