Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<script>
function getCity(countryId,stateId) {
alert(countryId+'::'+stateId);
var strURL="findCity1.php?country="+countryId+"&state="+stateId;
}
</script>
<select name="state" onchange="getCity('va', this.value)">
<option value="i"> Избери предмет</option>
<option value="2">dve</option>
<option value="3">tri</option>
<option value="3">chetiri</option>
</select>