$(document).ready(function($) {
    $(".tweet").tweet({
        count: 1
    });
}).bind("empty", function() { $(this).append("No matching tweets found"); });


$(function() {
    $("#selectAirline").change(function() {
        if ($(this).val()) {
            window.open($(this).val(), '_blank');
            $("#airlineForm").submit();
        }
    });

    // just to be sure that it is submitting, remove this code
    $("#formElement").submit(function() {
        alert('submitting ... ');
    });
});
