# Want to disable or remove the item that's selected in the above dropdown from the multi select below

**URL:** https://discuss.emberjs.com/t/want-to-disable-or-remove-the-item-thats-selected-in-the-above-dropdown-from-the-multi-select-below/17602
**Category:** Ember CLI
**Created:** [March 6, 2020, 2:09am UTC](https://discuss.emberjs.com/t/want-to-disable-or-remove-the-item-thats-selected-in-the-above-dropdown-from-the-multi-select-below/17602 "2020-03-06T02:09:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![abdul](https://avatars.discourse-cdn.com/v4/letter/a/dfb087/32.png) [@abdul](https://discuss.emberjs.com/u/abdul)
#### Post date: [March 6, 2020, 2:09am UTC](https://discuss.emberjs.com/t/want-to-disable-or-remove-the-item-thats-selected-in-the-above-dropdown-from-the-multi-select-below/17602/1 "2020-03-06T02:09:00Z")

</div>

Hi everybody - I have a question in Ember, I have a dropdown when an Item selected in the dropdown - it should either remove item or disable item from the multi-select below, how can I do that, my controls are set in the below way - any suggestion please - thank you.

```
                <div class="row">
                    <div class="form-group">
                        <label for="section" class="col-md-4 control-label">Assigned Investigator</label>
                        <div class="col-md-6">
                            <select class="form-control" id="assignedInspectorSelect" required="required">
                                <option value="">Select...</option>
                                {{#each model.staffonly as |inspector|}}
                                {{#if (is-same model.imscase.inspectorId inspector.id)}}
                                <option value="{{inspector.id}}" selected>{{inspector.name}}</option>
                                {{else}}
                                <option value="{{inspector.id}}">{{inspector.name}}</option>
                                {{/if}}
                                {{/each}}
                            </select>
                        </div>
                    </div>
                    <div class="col-md-12">
                        <div class="form-group">
                            <label for="section" class="control-label">Owner(s)</label>
                            {{#multiple-select
                                multiple="multiple"
                                list=model.investigators
                                select=model.imscase.assignedToInvestigators
                                selector='id'
                                required=true
                                id='assignedToInvestigators' as |item id|}} 
                                {{multiple-select-option value=item.id content=item.name}}
                            {{/multiple-select}}
                        </div>
                    </div>
                </div>

```
