<form method="post" role="form">
<input type="number" id="interval_lo">
<input type="number" id="interval_hi">
<select name="" id="select_sea">
<option value="" selected="">Расстояние до моря</option>
<option value="1"> до 300 м </option>
<option value="2"> от 300 до 600 м </option>
<option value="3"> от 600 м до 1 км </option>
<option value="4"> от 1 до 2 км </option>
<option value="5"> от 2 до 10 км </option>
<option value="6"> больше 10 км </option>
</select>
</form>
$("select#select_sea").change(function() { v = $(this).val();
//if (v == 1) {
//$("input#ot").val("0");
//$("input#do").val("500");
//};
if (v == 1) {
$("input#interval_lo").val("0");
$("input#interval_hi").val("300");
};
if (v == 2) {
$("input#interval_lo").val("301");
$("input#interval_hi").val("600");
};
if (v == 3) {
$("input#interval_lo").val("601");
$("input#interval_hi").val("1000");
};
if (v == 4) {
$("input#interval_lo").val("1001");
$("input#interval_hi").val("2000");
};
if (v == 5) {
$("input#interval_lo").val("2001");
$("input#interval_hi").val("10000");
};
if (v == 5) {
$("input#interval_lo").val("10001");
$("input#interval_hi").val("100000000000");
};
}
);
const a = "500-1000";
const res = a.split("-");
const from = res[0];
const to = res[1];