$(document).ready(function()
{

	$("#selector_guias").change(
		function ()
		{
			if ($("#selector_guias").attr("class") != "" && this.value != "")
				location.href = this.value + "/" + $("#selector_guias").attr("class");
		}
	);

});
