
$(function(){
$("select#pop_jump").change(function(){
		var filter=this.options[this.selectedIndex].value;
		window.location='/popular.html?filter='+filter;
    });
});
