$(document).ready(function($) {
$("#survey").submit(function(e) {
submitSurvey();
return false;
});
$("#reset").click(function() {
$("input, textarea, .error-msg").removeClass("error");
});
$(".others-text-field").keyup(function() {
$(this).parent().prev("input").attr("value", $(this).val());
});
$(".one-option input[type='checkbox']").click(function(){
$(this).parent().parent().siblings().find('input:checked').removeAttr('checked');
});
});

