function getText(strt){
    
    var air = new Array(2);
    air[1] = strt;
    
    switch(strt){
        
        case 'Atlanta':
            air[0] = 'Fly non-stop from Atlanta Hartsfield (ATL) to Harrisburg (MDT) on Delta Airlines. Total flight time: 2 hours ';
            air[1] = 'Harrisburg Airport';
            break;
        case 'Boston':
            air[0] = 'Fly non-stop from Boston Logan (BOS) to Harrisburg Airport (MDT) on Delta Airlines. Total flight time: 1 hour 45 minutes. ';
            air[1] = 'Harrisburg Airport';
            break;
        case 'Charlotte':
            air[0] = 'Fly non-stop from Boston Logan (BOS) to Harrisburg Airport (MDT) on Delta Airlines. Total flight time: 1 hour 45 minutes. ';
            air[1] = 'Harrisburg Airport';
            break;
        case 'Chicago':
            air[0] = 'Fly non-stop from Chicago O\'Hare (ORD) to Harrisburg airport (MDT) on American or United Airlines. Total flight time: 1 hour 45 minutes ';
            air[1] = 'Harrisburg Airport';
            break;
        case 'Cincinnati':
            air[0] = 'Fly non-stop from Cincinnati (CVG) to Harrisburg Airport (MDT) on Delta Airlines. Total flight time: 1 hour 25 minutes. ';
            air[1] = 'Harrisburg Airport';
            break;
        case 'Cleveland':
            air[0] = 'Fly non-stop from Cleveland Hopkins (CLE) to Harrisburg Airport (MDT) on Continental Airlines. Total flight time: 1 hour. ';
            air[1] = 'Harrisburg Airport';
            break;
        case 'Detroit':
            air[0] = 'Fly non-stop from Detroit (DTT) to Harrisburg Airport (MDT) on Northwest Airlines. Total flight time: 1 hour 30 minutes. ';
            air[1] = 'Harrisburg Airport';
            break;
        case 'Minneapolis':
            air[0] = 'Fly non-stop from Minneapolis/St. Paul (MSP) to Harrisburg International (MDT) on Northwest Airlines. Total flight time: 2 hours 20 minutes ';
            air[1] = 'Harrisburg Airport';
            break;
        case 'Myrtle Beach':
            air[0] = 'Fly non-stop from Myrtle Beach (MYR) to Allentown/Lehigh Valley Airport (ABE) on Southern Skyways. Total flight time: 1 hours 45 minutes.';
            air[1] = 'Allentown/Lehigh Valley Airport';
            break;
        case 'Orlando':
            air[0] = 'Fly non-stop from Orlando/Sanford (SFB) to Allentown/Lehigh Valley Airport (ABE) on AllegiantAir. Total flight time: 2 hours 10 minutes ';
            air[1] = 'Allentown/Lehigh Valley Airport';
            break;
        case 'Tampa':
            air[0] = 'Fly non-stop from St Petersburg/ Clearwater (PIE) to Allentown/Lehigh Valley Airport (ABE) on Allegiant Air. Total flight time: 2 hours 30 minutes ';
            air[1] = 'Allentown/Lehigh Valley Airport';
            break;
        case 'Toronto':
            air[0] = 'Fly non-stop from Toronto Pearson (YTO) to Harrisburg airport (MDT) on Air Canada. Total flight time: 1 hour 30 minutes ';
            air[1] = 'Harrisburg Airport';
            break;
    }
    
    return air;
}
