diff --git a/geocoder.widget.inc b/geocoder.widget.inc
index 8fe8e51..1973805 100644
--- a/geocoder.widget.inc
+++ b/geocoder.widget.inc
@@ -322,7 +322,9 @@ function geocoder_widget_get_field_concat($items) {
   // Check if we should concatenate
   $concat = '';
   foreach ($items as $item) {
-    $concat .= trim($item['value']) . ', ';
+    if (!empty($item['value'])) {
+      $concat .= trim($item['value']) . ', ';
+    }
   }
   $concat = trim($concat, ', ');
   $items = array(array('value' => $concat));
