$(function() {
	$("#selectNav").each(function() {
		$(this).change(function(ev) {
			document.location.href = '/archive/' + ev.target.value;
		})
	})
});