Hi Sharda,
This seem to be a bug, the deleted drop down option was hidden when you see the entries. To fix this, you will need to edit some machform files, try to follow these steps :
1. Edit "manage_entries.php" and go to around line 107 for these code :
$query = "select element_id,option_id,<code>option</code> from ap_element_options where form_id='$form_id' and live=1 order by element_id,option_id asc";
then change it to
$query = "select element_id,option_id,<code>option</code> from ap_element_options where form_id='$form_id' order by element_id,option_id asc";
2. Edit "includes/entry-functions.php" file and go to around line 260 for this code :
$query = "select element_id,option_id,<code>option</code> from ap_element_options where form_id='$form_id' and live=1 order by position asc";
then change it to
$query = "select element_id,option_id,<code>option</code> from ap_element_options where form_id='$form_id' order by position asc";
However, if you have any difficulty with this, you can mail us directly to here :
customer.service[at]appnitro.com
we will help you with the fix
MachForm Support