Alternatively, you could use the follwoing to show only the main airline in the select box:
<dd>
<select name="code" id="code">
<?php
foreach($allairlines as $airline)
{
if($airline->code == "ABC")//"ABC" is your 3 letter airline's code.
{
echo '<option value="'.$airline->code.'">'.$airline->code.' - '.$airline->name.'</option>';
}
}
?>
</select>
</dd>