Try this...
ddlTest.Items.Insert( 0 , new ListItem( "Please select a value...", "-1") )
After that... you could verify that the SelectedValue is not equal to -1 (or change it to any value you want...) if you're field is not optional.
There you go
[edit]This will require the following assembly : System.Web.UI.WebControls[/edit]