Item-To-Delete
As soon as the value of this property is modified, the corresponding item in the list is removed.
Each item is identified by a number that matches its position in the list, starting at 1.
 
Example - Modify a combo-box to delete the 2nd item on it
...
procedure division.
...
  modify screen-1-co-1 item-to-delete 2.
...