// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function changeType() {
  if ($('proptype').value == 'SaleProperty') {
    $('target_selects').innerHTML = $('sale_selects').innerHTML;
  } else {
    $('target_selects').innerHTML = $('let_selects').innerHTML;
  }
}
function changeBranch() {
  if ($('branch_id').value == '1062') {
    $('srch_form').action = '/aylesbury/search';
  } else {
    $('srch_form').action = '/swindon/search';
  }
}