someField.value = someField.defaultValue;
<form action="" data-container="city">
<select name="fromcity">
<option value="">-- Please Select --</option>
<option value="Perviy">Perviy</option>
</select>
<select name="fromdistrict">
<option value="Vtoroy">Vtoroy</option>
</select>
</form>
$(document).on('change', '[data-container="city"]', function (e) {
console.log(e.target);
console.log($(e.target.form).serialize());
});
.modal{
bottom: 0;
}
<div class="modal">
<div class="content"></div>
</div>
.modal{
display:flex;
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
}
.content{
width:300px;
height:400px;
margin:auto;
border-radius:20px;
background:#369;
}
.modal{
position:fixed;
right:50%;
bottom:50%;
transform:translate(50%, 50%);
}
.content{
width:300px;
height:400px;
border-radius:20px;
background:#369;
}
::-webkit-input-placeholder{
text-align:right;
}
:-moz-placeholder{
text-align:right;
}
::-moz-placeholder{
text-align:right;
}
:-ms-input-placeholder{
text-align:right;
}
background:linear-gradient(45deg, #f6a119 25%, #f2970d 25%, #f2970d 50%, #f6a119 50%, #f6a119 75%, #f2970d 75%) 0 0 / 40px 40px;