You can generate a stylesheet on the server side and attach it to the page using:
HtmlGenericControl style = new HtmlGenericControl("style");
style.Attributes.Add("type", "text/css");
style.InnerText = "p { color:red; }";
Page.Header.Controls.Add(style);
The code above can be inside the event handler of the selectionindexchanged event of the dropdown, you can then generate all the styles you want and attach them to the page.
If you simply want to attach a reference to an external css file then you can do:
HtmlGenericControl link = new HtmlGenericControl("link");
link.Attributes.Add("rel", "stylesheet");
link.Attributes.Add("type", "text/css");
link.Attributes.Add("href", "/styles.css");
Page.Header.Controls.Add(link);