Hola Vannessa,
Puedes hacer un removeAll antes de llenar nuevamente el combo.
Código actionscript:
Ver originalon(focusIn){
miLV = new LoadVars();
miLV.sendAndLoad("http://localhost/estados.php", miLV, "POST");
miLV.onLoad = function (success:Boolean){
if (success){
_root.com_edo.removeAll(); // Aquí
for(i=0;this["edo"+i]!=undefined;i++){
_root.com_edo.addItem (this["edo"+i]);
trace (this["edo"+i]);
}
}
else {
trace("error al cargar script externo");
}
}
}
Saludos.