Initially my dropdown has a blank option by default, I would like to change the text of this option. how can I do it?
<body ng-controller="controller">
<span>Options: </span>
<select ng-options="item as item.name for item in regions track by item.code" ng-model="select">
</select>
</body>