Yes, This is possible by using Jquery image and droupdown value comes from xml.
1. You need to bind the Drop-Down list to XML data. Use the below code for the this:-
DataSet dsDept = new DataSet();
dsDept.ReadXml(Server.MapPath("Departments.xml"));
DrpDepartment.DataSource = dsDept;
DrpDepartment.DataTextField = "deptName";
DrpDepartment.DataValueField = "deptId";
DrpDepartment.DataBind();
DrpDepartment.Items.Insert(0, new ListItem("-- Select --", "0"));
2. For the image display according to Drop-down selected value, you can use the below link:-
http://jsfiddle.net/ZFpQh/7/
Hope this will help you.
Pcjoshi, if this helps please login to Mark As Answer. | Alert Moderator