One option is to add Validator controls to your page. They take care of displaying error messages whenever the validation fails.
Another alternative is to intercept the OnClick event of the Submit button and perform your validation there. It's simple, you make sure that the SelectedValue of each DropDownList is not empty if the Count of items is greater than one. I said greater than one because you always leave a comment item in your lists, such as "Select City", even when they are empty.
You could do this also in the Page_Load event of the page.
-dZ.