I have a select box.
When no value is selected, I have the empty option --. It's OK !
Once an option is selected, the empty option disappears.
But I would like that it is always there to have the opportunity to choose --. 
Is it possible ?
<select ng-model="project" ng-options="act.id as act.name for act in actors"></select>

