JSFiddle - React, Tailwind, and code Playground

HTML

<label>
    Точка отправления: <select id="derivalPoint"></select>
</label>
<label>
    Точка прибытия: <select id="arrivalPoint"></select>
</label>

габаритные места
<label for=""><input type="text" id="sizedWeight" value="5"/> кг</label>
<label for=""><input type="text" id="sizedVolume" value="1"/> м<sup>3</sup></label>
<input type="hidden" value="0" id="oversizedWeight"/>
<input type="hidden" value="0" id="oversizedVolume"/>
<input type="button" id="calc" value="Посчитать"/>

CSS

label {
    display:block;
}

JavaScript

$(document).ready(function(){
    $.ajax({
        url: 'https://api.dellin.ru/v2/public/terminals.json'
        , data: {
            "appKey": '10E3FE20-75C0-11E7-8F2F-00505683A6D3'
        }
        , type: 'POST'
        , dataType: 'json'
        , success:  function(data){
            console.log(data)
        }
    })
});