function switchSearch() {
    var flight = document.getElementById('search-flight');
    var price = document.getElementById('search-prices');
    var priceStyle = price.style.display;
    price.style.display = flight.style.display;
    flight.style.display = priceStyle;
}

