
$(document).ready(function(){

	if($('.select-news-filter').length > 0){
			$('.select-news-filter').change(function(){
				if($(this).val() !='#')
					$(location).attr('href','/news.php?year='+($(this).val()));
				else
					$(location).attr('href','/news.php');
			});

		}
});
