$(document).ready ( function () {
	$("#cboestado").change( function() {
		$.get('carrega_cidades.php',{ tipo: "Autorizada", estado: $("#cboestado").val() },
			function(response) {
				$("#cbocidades").html(response);
				$("#cboproduto, #cbocidades").unbind('change');
				$("#cboproduto, #cbocidades").bind('change', function() {
					if ($("#cboestado").val() != "" && $("#cbocidades").val() != "") {
						$.get('carrega_representantes.php',{ tipo: "Autorizada", produto: $("#cboproduto").val(), estado: $("#cboestado").val(), cidade: $("#cbocidades").val() },
							function(response) {
								$("#container_representantes").html(response);				
							}
						);
					}
				});
			}
		);
	});	
});
