<!-- вставитьт в head -->
<script>
sf = function() {
list1 = document.getElementById('p01-contact1_field3')
prc = document.getElementById('price')
if (list1.selectedIndex == 0) {
prc.innerHTML = ' 600р'
}
else {
prc.innerHTML = ' 1600р'
}
}
window.onload = function(){
list1 = document.getElementById('p01-contact1_field3')
prc = document.getElementById('price')
document.querySelector('input[value="Сделать заказ"]').style.float = 'left'
prc.style.fontSize = '26px'
if (list1.selectedIndex == 0) {
prc.innerHTML = ' 600р'
}
else {
prc.innerHTML = ' 1600р'
}
list1.setAttribute('onChange', 'sf()')
}
</script>
<!-- вставить в форме после <input class="submit" type="submit" value="Сделать заказ" /> -->
<div id="price"></div>