Как да добавя текст на option select jquery

Искаш когато се натисне бутон да добавиш текст на option-a?
Пробвай така.

[js]
<select>
<option id="text">1</option>
<option>1</option>
</select>

<a href="#" id="button">
BUTTON
</a>

<script>
$('#button').one('click', function () {
var text = $('#text');
var app = "some text";
text.append(app);
});
</script>

[/js]
 

Горе