<div ng-app="app" ng-controller="ctrl">
<p>The text input will clear when you select a new type.</p>
<input type="text" ng-model="currType.text">
<select ng-model="currType" ng-change="change()" ng-options="type.id as type.name for type in types">
<option value="">- Choose Type -</option>
</select>
<p>{{currentTypeID}}</p>
<p>{{currType}}</p>
</div>