OKVI
Ваш заказ
Total: 
Можна не дзвонити для підтвердження замовлення
Payment method
ЛЕГКИЙ ОБМІН ТА ПОВЕРНЕННЯ
НАЙШВИДША ДОСТАВКА 1 ДЕНЬ
Оформление скидки
Введите номер телефона и вы получите промокод для скидки! (Полученный промокод укажите при оформлении заказа)
OUR COMPANY
Bring Your Ideas to Life
Everything that you dreamed of can be brought to life exactly at the moment when you decide to win.
Розмір одягу

Розмір одягу

const form = document.querySelector('form'); const result = document.querySelector('#result'); form.addEventListener('submit', function(event) { event.preventDefault(); const hipCircumference = parseInt(form.elements['hip-circumference'].value); const waistCircumference = parseInt(form.elements['waist-circumference'].value); let size = ''; if ((hipCircumference >= 80 && hipCircumference <= 84) && (waistCircumference >= 60 && waistCircumference <= 64)) { size = 'S'; } else if ((hipCircumference >= 85 && hipCircumference <= 89) && (waistCircumference >= 65 && waistCircumference <= 69)) { size = 'M'; } else if ((hipCircumference >= 90 && hipCircumference <= 94) && (waistCircumference >= 70 && waistCircumference <= 74)) { size = 'L'; } else if ((hipC