$(function(){
	$('#indicadores').change(function(){
		window.location = $(this).val();
	});	
});

function goToStep(step){
	var nextStep = $('#cadastroForm'+step);
	nextStep.siblings('.contentForm').hide();
	nextStep.show();
	$('body,html').animate({scrollTop:0},800);
}

