Quiero que cuando el cliente elija la primera opcion, desaparezca el mensaje con id "mejor"
Gracias!!
Código HTML:
Ver original
<div id="lista"> <form action="" id="formulario"> Seleccione un paquete <select name="1"> </select> </form> </div> <div id="mejorOpcion"> </div> </div> <script type="text/javascript"> var obtener = document.getElementById("mejor"); //var opcion = document.getElementById("formulario").value; var form = document.getElementById("formulario"); var obtenerOpcion = form.options[form.selectedIndex].value; if (obtenerOpcion == '0'){ mejor.innerHTML=""; } </script>