diff --git a/src/Form/CreateMigrationForm.php b/src/Form/CreateMigrationForm.php
index 6cf4fa1..e4e5371 100644
--- a/src/Form/CreateMigrationForm.php
+++ b/src/Form/CreateMigrationForm.php
@@ -119,7 +119,7 @@ class CreateMigrationForm extends MigrationEntityFormBase {
     $form['configuration']['destination_bundle'] = [
       '#type' => 'select',
       '#title' => $this->t('Destination entity bundle'),
-      '#options' => $this->getEntityBundles(),
+      '#options' => ['_none' => $this->t('- Select - ')] + $this->getEntityBundles(),
       '#required' => TRUE,
       '#default_value' => $this->getConstant('bundle'),
       '#prefix' => '<div id="migrate-destination-bundle">',
@@ -205,7 +205,9 @@ class CreateMigrationForm extends MigrationEntityFormBase {
    * {@inheritdoc}
    */
   public function validateForm(array &$form, FormStateInterface $form_state) {
-
+    if ($form_state->getValue('destination_bundle') === '_none') {
+      $form_state->setErrorByName('destination_bundle', $this->t('Bundle cannot be empty'));
+    }
   }
 
   /**
