document.querySelector('form').addEventListener('click', ({ target: t }) => {
let step = 0;
if (t.classList.contains('btn-prev')) {
step = -1;
} else if (t.classList.contains('btn-next')) {
step = 1;
}
if (step) {
const select = t.closest('.section').querySelector('select');
const optionsCount = select.options.length;
select.selectedIndex = (select.selectedIndex + optionsCount + step) % optionsCount;
}
});