document.addEventListener("DOMContentLoaded", function() { setTimeout(function() { var selects = document.querySelectorAll(".super-attribute-select"); selects.forEach(function(select) { var firstOption = select.querySelector("option[value='']"); if (firstOption) { firstOption.textContent = "Bitte Option wählen"; } }); }, 500); });