diff --git a/contact_importer.module b/contact_importer.module
index 26eb8c6..9e509e4 100644
--- a/contact_importer.module
+++ b/contact_importer.module
@@ -431,13 +431,17 @@ function contact_importer_select_contacts_form(&$form_state) {
 
   // Create the form.
   $email_list = array();
-  $email_list['select_all'] = '<em>'. t('Select/Deselect All') .'</em>';
+  
   foreach ($form_state['storage']['contacts'] as $contact) {
     $name = $contact['name'];
     $email = $contact['email'];
     $email_list[check_plain($email)] = check_plain($name) .' &lt;'. check_plain($email) .'&gt;';
   }
-  
+
+  asort($email_list);
+  $email_list = array_merge(array('select_all' => '<em>'. t('Select/Deselect All') .'</em>'), $email_list);
+
+
   $form['confirmed_list'] = array(
     '#type' => 'checkboxes',
     '#options' => $email_list,    
