hola tengo un select creado dinamicamente y querría coger el text de la opcion seleccionada ¿como lo podria hacer? este es el codigo:
var cadJSON=conexion.responseText;
selector=JSON.parse(cadJSON);
for (indice in selector) {
// crear elemento DOM option
elemento=document.createElement("option");
elemento.setAttribute("value",selector[indice].codpobl);
elemento.text=selector[indice].descpobl;
document.getElementById("localidadorigen").appendC hild(elemento);
}