Decoration not support the select tag

Does decoration not support the select tag? When I click on it, nothing happens. @marijn

 toDOM() {
    let wrap = document.createElement('span');
    let select = document.createElement('select');
    select.style.cursor = 'pointer';
    let option1 = document.createElement('option');
    option1.value = 'javascript';
    option1.text = 'javascript';
    option1.selected = true;
    select.append(option1);
    wrap.appendChild(select);
    return wrap;
  }