add id attribute to select fields in edit ad form
It would be of a great use if you add the id attribute to the select field (or to every input field in the forms) since it will make styling much more easier.
An example is in theme-functions.php line 1238; you forgot to add an id attribute to the select field.
PHP Code:
<select name="<?php esc_attr_e($result->field_name); ?>" id="<?php esc_attr_e($result->field_name); ?>" class="dropdownlist<?php if ($result->field_req) echo ' required'; ?>">
hope this is fixed in next release.