The trouble you are facing here is that you are trying to clear the input box with id inp
while calling pre-selected-options
, which isn't connected to your text box.
Using document.getElementById('inp').value = ""
should clear the value of your textbox.