RE: get orginal value rather than alias value Gary Roberts 15.Jun.12 04:29 PM a Web browser Applications Development All ReleasesAll Platforms
You can grab the TEXT of the selected dropdown field, which is what you want. IND would be the VALUE of it, INDIA is the TEXT of it This way you can leave the VALUE alone in case some other piece of code may be expecting it...:
var x = document.getElementById("Country")
var SelectedCountry = x.options[x.selectedIndex].text;