angulerjs ng-model on way data binding

is it possible to do one way data-binding to get selected value of combo-box. or any other way to get value of combo-box? my combo-box from laravel like this.

<select id="district" name="district" ng-change="selectDistrict()" >
    @foreach($districts as $district)
        @if ($district->name == $buyer->district)
            <option value="{{ $district->name }}" selected="selected">{{ $district->name }}</option>
        @else
            <option value="{{ $district->name }}" >{{ $district->name }}</option>
        @endif
    @endforeach
</select>

thanks

I think you are looking for ng-model