/* * southampton.js * FixMyStreet JavaScript for Southampton */ $(function(){ $('#form_category').change(function(){ var category = $(this).val(); if ('Potholes' == category) { if (!$('#potholes_extra').length) { var qns = '
'; $('#form_title').closest('div.form-field').after(qns); } $('#potholes_extra').show('fast'); } else { $('#potholes_extra').hide('fast'); } }).change(); });