diff --git a/modules/sms_clickatell/sms_clickatell.module b/modules/sms_clickatell/sms_clickatell.module
index 994157e..90a0262 100644
--- a/modules/sms_clickatell/sms_clickatell.module
+++ b/modules/sms_clickatell/sms_clickatell.module
@@ -57,6 +57,13 @@ function sms_clickatell_admin_form($configuration) {
     '#maxlength' => 64,
     '#default_value' => $configuration['sms_clickatell_password'],
   );
+  $form['sms_clickatell_country'] = array(
+    '#type' => 'select',
+    '#title' => t('Default Country'),
+    '#multiple' => FALSE,
+    '#options' => array_merge(array(0 => "None"), sms_clickatell_country_codes()),
+    '#default_value' => $configuration['sms_clickatell_country'],
+  );
   
   return $form;
 }
@@ -76,14 +83,19 @@ function sms_clickatell_admin_form_validate($form, &$form_state) {
  * Returns custom additions to be added to the send forms
  */
 function sms_clickatell_send_form() {
-  $form['country'] = array(
-    '#type' => 'select',
-    '#title' => t('Country'),
-    '#multiple' => FALSE,
-    '#options' => sms_clickatell_country_codes(),
-    '#default_value' => -1,
-  );
-  
+  $form = array();
+  $cfg = variable_get('sms_clickatell_settings', '');
+
+  if(!array_key_exists('sms_clickatell_country', $cfg) || $cfg['sms_clickatell_country'] == 0) {
+    $form['country'] = array(
+      '#type' => 'select',
+      '#title' => t('Country'),
+      '#multiple' => FALSE,
+      '#options' => sms_clickatell_country_codes(),
+      '#default_value' => -1,
+    );
+  }
+
   return $form;
 }
 
@@ -91,7 +103,14 @@ function sms_clickatell_send_form() {
  * Callback for sending messages.
  */
 function sms_clickatell_send($number, $message, $options) {
-  $number = $options['country'] . $number;
+  $cfg = variable_get('sms_clickatell_settings', '');
+
+  if(!array_key_exists('sms_clickatell_country', $cfg) || $cfg['sms_clickatell_country'] == 0) {
+    $number = $options['country'] . $number;
+  }
+  else {
+    $number = $cfg['sms_clickatell_country'].$number;
+  }
   return sms_clickatell_command('sendmsg', array('number' => $number, 'message' => $message));
 }
 
