jQuery('document').ready(function() { var isppackageVal = 'ie. BT Total Broadband'; var commentsVal = 'Please enter any additional comments or pertinent information here'; if(jQuery('#isppackage').val() == '') { jQuery('#isppackage').val(isppackageVal); } jQuery('#isppackage').focus(function() { if(jQuery(this).val() == isppackageVal) { jQuery(this).val(''); } }).blur(function() { if(jQuery(this).val() == '') { jQuery(this).val(isppackageVal); } }); jQuery('#signupForm').submit(function() { if(jQuery('#isppackage').val() == isppackageVal) { jQuery('#isppackage').val(''); } return true; }); jQuery('#isp').change(function() { if(jQuery(this).val() == 'Other') { jQuery('#otherisp-row').slideDown('slow'); } else { jQuery('#otherisp-row').slideUp('fast'); jQuery('#otherisp').val(''); } }); });