Envíe el select, ya de por si
jQuery siempre usa el valor seleccionado.
Código Javascript
:
Ver original$(document).ready(function(){
$("#centro1").change(function () {
var elegido=$(this).serialize();
$.post("datos.php", elegido, function(data){
$("#td1").html(data);
});
})
});