You can use the delete method to delete items from the Listbox:
$lb->delete(firstindex [, lastindex ]);
The first argument is the index from which to start deleting. To delete more than just that one item, you can add a second index. The firstindex must be less than or equal to the lastindex specified. To delete all the elements in the Listbox:
$lb->delete(0, 'end');
To delete the last item in the Listbox:
$lb->delete('end');