$(document).ready(function() {
	$("select.month[rel], select.year[rel]").change(function(){
		url = $(this).attr("baseurl")
			+ $("select.year[rel=" + $(this).attr("rel") + "]").val()
			+ "/"
			+ $("select.month[rel=" + $(this).attr("rel") + "]").val();

		$($(this).attr("rel")).load(url)
	})
});
