I use this Jquery to select nth child
<select class="perf-select">
<option selected>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
jquery
jQuery('.perf-select>option:eq(2)').prop('selected', true);
How i achive this in angularjs ng-option
<select class="perf-select" ng-model="viewProfileCtrl.graphsForm.institution"
ng-options="inst.institution.institution_id as inst.institution.name for inst in viewProfileCtrl.perfiosAnalysisData.institutions"
ng-change="viewProfileCtrl.setGraphInsti(viewProfileCtrl.graphsForm.institution)">
<option value="" selected>Select a Bank </option>
</select>