I'm not sure if i understand what you are asking, but are you are
looking for changing the datepicker settings when the dropdown options
are selected?
For instance, you could change the beforeShowDay like this (when
dropdown is changed):
$('#dropdown').change(function() {
$("#selector").datepicker("change", { beforeShowDay:
somethingElse });
});