Hola
Killerx_8937
Prueba este código:
Código PHP:
<html>
<head>
<script type="text/javascript">
function anadir(frm) {
opt = new Option(frm.txt.value,frm.txt.value);
frm.sele.options[frm.sele.options.length] = opt;
frm.txt.value = '';
}
</script>
</head>
<body>
<form>
<input type="text" name="txt" />
<input type="button" value="Añadir" onclick="anadir(this.form)" /><br />
<select name="sele" size="5">
</select>
</form>
</body>
</html>
Saludos,