_select_state.html
370 Bytes
<label>
<div class="input-label">
Estado
</div>
<select ng-model="profile.state" ng-value="profile.state" ng-change="loadCitiesByState(profile.state.id)" ng-options="state.name for state in states track by state.id" class="item">
<option value="">Escolha o estado...</option>
</select>
</label>
<ng-include src="'html/_select_city.html'"></ng-include>