Follow the complete JavaScript code:
var idcl = document.getElementById('idcl').value;
$(document).ready(function(){
$('#estados').change(function(){
$('#cidades').load('cidades.php?estado='+$('#estados').val()+'&cliente='+idcl);
$('#transacao').load('transacao.php?estado='+$('#estados').val()+'&cliente='+idcl+'&teste='+$('#cidades').val());
});
});
Fields select:
<select name="cidades" id="cidades">...</select>
<select name="transacao" id="transacao">...</select>
I can not get this parameter: teste='+$('#cidades').val()
to get the value that is in #cidades
.