$(document).ready(function() {
$('select[name="company-business-type"]').change(function() {
if ($(this).val() === "Others") {
$('#business-others-input').show();
} else {
$('#business-others-input').hide();
}
}).trigger('change');
});