diff --git a/entityreference.module b/entityreference.module
index bdcb562..e8e2c4c 100644
--- a/entityreference.module
+++ b/entityreference.module
@@ -854,6 +854,11 @@ function entityreference_field_widget_form(&$form, &$form_state, $field, $instan
     }
     $autocomplete_path .= $id;
 
+    $element['#title'] = $instance['label'];
+    if($field['cardinality'] != 1) {
+      $element['#title'] .= ' #' . ($delta + 1);
+    }
+
     if ($instance['widget']['type'] == 'entityreference_autocomplete') {
       $element += array(
         '#type' => 'textfield',
