so you want the text box to use the label from the select list, not the value.
change:
var text1 = document.getElementById("LastBillDate").value;
to:
var text1 = document.getElementById("LastBillDate")[document.getElementById("LastBillDate").selectedIndex].text;