function produto()
{
	if($("#selLinha").attr("id") != 'undefined')
	{
		$("#selLinha").change(function()
		{
			if($(this).val() != '')
			{
				window.document.location = "produto-linha-lista.php?TipoID="+$(this).val();
			}
		});
	}
}