$(function() {
    $('#archive').change(function(){
	var v = $(this).val();
	v = v.replace(/ /g, '+');
	if(v != 'select'){
		window.location='/?s='+v;
	}
	});
});

