Is it possible to hide select box options using the ng-hide directive?
<div ng-app ng-controller="Controller">
<select ng-model="myDropDown">
<option value="one">One</option>
<option value="two" ng-hide="myDropDown=='one'">Two</option>
<option value="three">Three</option>
</select>
{{myDropDown}}
</div>
AngularJS 1.1.5 has a directive ng-if
which can work for you. Check this fiddle http://jsfiddle.net/cmyworld/bgsVw/