$(function(){
    $wrapper = $('#discountWrapper');
    $link = $('#linkHaveADiscount');
    $txt = $('#discount_code');
    txtVal = $txt.val();

    
    $txt.mousedown(function(){
            if($(this).val() == txtVal) {
                $(this).val(''); 
            }
        }).focus(function() {
            if($(this).val() == txtVal) {
                $txt.val('');
            }
        });
    
    $txt.blur(function() {
            if($(this).val() == '') {
                $txt.val(txtVal);
            }
        });

    $link.click(function(){ 
        $link.hide();
        $wrapper.show();
    });
});