function clearText(val){
	if(val=="Enter your username..."){
		$('#username').val("");
	}else if(val=="Enter your password..."){
		$('#password').val("");
	}
}

function other_categories(){
	if($("#business_category_1").val()=="other"){
		$("#other_cate_div").show();
	}else{
		$("#other_cate_div").hide();
	}
}

