この例を参照してください。これでは、さまざまなオプションを選択しているときに、選択したオプションの値とタイトルが取得され、宛先 div に書き込まれます。
HTML:
<select name="type" id="selectBox" onchange="call(this.value)">
<option title="your text for Volvo">Volvo</option>
<option title="your text for Saab" selected="selected">Saab</option>
<option title="your text for Mercedes">Mercedes</option>
<option title="your text for Audi">Audi</option>
</select>
<div id="message"></div>
Javascript:
function call(value){
var msgDiv = document.getElementById("message");
var selectBox = document.getElementById("selectBox");
var title = selectBox.options[selectBox.selectedIndex].getAttribute('title');
var message = value + " " + title;
msgDiv.innerHTML = message;
}