HTML: JS:
Código Javascript
:
Ver original$('#idSelect').change(function() {
if ($(this).val() == 1) {
$('#texto').html('Edad');
} else {
$('#texto').html('Numero');
}
})
Seria algo asi, fijate de cambiar la lógica para que te funcione. Esta en jQuery porque es mas facil de codificar :D