jquery コード
$(function() {
$ ("#DropDownList1").bind("change", function() {
$("#Label1").text($("#DropDownList1 オプション:選択済み").text());
});
または
$("#DropDownList1").bind("change", function() {
$("#Label1").text($("#DropDownList1").val ());
});
var name = $("#DropDownList1 option:selected").val();ドロップダウンリストで選択された値
var name1 = $("#DropDownList1").text(); //ドロップダウンリストで使用される値を取得します。