diff --git a/fillpdf.admin.inc b/fillpdf.admin.inc
index b7d33f0..1537b6c 100644
--- a/fillpdf.admin.inc
+++ b/fillpdf.admin.inc
@@ -48,13 +48,13 @@ function fillpdf_settings(){
   );
   $form['remote']['fillpdf_remote_protocol'] = array(
     '#type' => 'radios',
-    '#title' => t('Use SSL?'),
-    '#description' => t('It is recommended to select <em>Yes</em> for this option. Doing so will help prevent
-      sensitive information in your PDFs from being intercepted in transit.'),
+    '#title' => t('Use HTTPS?'),
+    '#description' => t('It is recommended to select <em>Use HTTPS</em> for this option. Doing so will help prevent
+      sensitive information in your PDFs from being intercepted in transit between your server and the remove service.'),
     '#default_value' => variable_get('fillpdf_remote_protocol', 'http'),
     '#options' => array(
-      'http' => t('No'),
-      'https' => t('Yes'),
+      'http' => t('Do not use HTTPS'),
+      'https' => t('Use HTTPS'),
       ),
     );
 
