<!doctype html>
<html>
<head>
<title></title>
<style></style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script></script>
</head>
<body>
<form>
<select name="selectItem">
<option value="£25.00" selected="selected">Small (£25.00)</option>
<option value="£30.00">Medium (£30.00)</option>
<option value="£35.00">Large (£35.00)</option>
</select>
<div id="price"></div>
</form>
<script>
$(document).ready(function() {
$('select[name="selectItem"]').change(function() {
var value = $('select[name="selectItem"] option:selected').val();
$('#price').text(value);
}).trigger('change');
});
</script>
</body>
</html>
Bookmarks