function Produtos()
{
	if($('#frmPesquisarProdutos').length > 0)
	{
		$('#selTxtPesquisa').hide();//Esconde o cmb de pesquisa
		
		$('#selTipoPesquisa').change( function() //Verifica qual a opcao escolhida para carregar o cmb de pesquisa
		{					
			if($(this).val() != '')
			{
				$('#selTxtPesquisa').show();
				$("#selTxtPesquisa").html("<option value=\"\">Aguarde...</option>");
				$('#txtPalavraChave').val('');
				
				$.ajax(
				{
				type: "POST",
				data: "acao=Pesquisar&tipo=" + $(this).val(),
				url: "_form_PesquisarProdutos.php",
				success: function(retorno)
					{
						$("#selTxtPesquisa").html(retorno);						
					}
				});
			}//Fim do if
		});
		
		$('#selTxtPesquisa').change(function() 
		{
			$('#frmPesquisarProdutos').submit();
			return false;						
		});	
	}
}