$(function(){

	$("#select_cursos").change(function(){
		if (this.value != 0) {
			window.location.href = "inscreva-se.php?curso="+this.value;
		}
	});

});