Yes it is possible
Add onchange event handler to your select.
<select class="required" id="thechoices" onchange="return airportChoice(this)">
Set the display for the box ID you wish to hide to hidden.
#box1{display:none} //css
Here is a generic function that recives argument based on reference, Based on your question so you can easly have lots of to an from airport choices just add the below to each of your selects if you need more choices.
onchange="return airportChoice(this)"
JS function
function airportChoice(n){
if(n.selectedIndex === 1){
// show a div (id) // alert(n.value);
document.getElementById(n.value).style.display = "block";
}else if(n.selectedIndex === 2){
location.href= n.value; // redirect the user to the url
}
// this last one is not what you ask but for completeness
// hide the box div if the first option is selected again
else if (n.selectedIndex == 0){ // alert(n[1].value);
document.getElementById(n[1].value).style.display = "none";
}
}