js borrar todas las opciones de selección
for (var option of document.querySelectorAll('#DropList option'))
{
option.remove();
}
Green Team
for (var option of document.querySelectorAll('#DropList option'))
{
option.remove();
}