This might be helpfull to you
Dropdownlist.Items.Insert(int index, ListItem(String text, String Value));
for eg:If you want to add a item "select" to your dropdown List (ddl) at index=0
then it codes like
ddl.Items.Insert(0, new ListItem("Select", "0"));