prova cosi:

codice:
<script type="text/javascript"> 
function selectalo(){ 
        var option = new Option("edai", 0);
	var select = document.getElementById('sel');
        try {
		select.add(option, null);
	} catch(e) {
		//Per Internet Explorer
		select.add(option);
	}
}
</script>